redis
编码的三叔
坚持是一种信仰。
展开
-
redis 最全的下载目录
redis下载目录原创 2021-03-26 10:11:32 · 134 阅读 · 0 评论 -
如何保证接口的幂等性?常见的实现方案有哪些?
幂等性问题是面试中常见的面试问题,也是分布式系统最常遇到的问题之一。假如jackray在淘宝平台进行购物,付款的时候不小心手抖了一下,连续点击了两次支付,但此时服务器没有任何验证,于是jackray的钱被扣了两次。这显然对当事人造成一定的经济损失,并且还会让用户丧失对平台的信任,幂等性的问题说的就是如何防止借口的重复无效请求。1、什么是幂等性?幂等性最早是数学里面的一个概念,后来被用于计算机领域用于表示任意多次请求均与一次请求执行结果相同对于一个接口而言,无论调用多少次,最终得到的结果都是一样的原创 2020-08-01 19:29:55 · 4505 阅读 · 0 评论 -
springboot整合redis lettuce
需要配置的jar <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> <dependency> <g原创 2020-07-23 17:36:08 · 324 阅读 · 0 评论 -
redisclinet下载地址
redisclient亲测可用原创 2019-01-13 18:08:20 · 605 阅读 · 0 评论 -
redis 总结
Redis的同步机制原创 2019-08-29 10:11:32 · 101 阅读 · 0 评论 -
centos7配置redis连接
CENTOS7下安装REDIS原创 2019-09-04 14:51:40 · 440 阅读 · 0 评论 -
WARNING overcommit_memory is set to 0! Background save may fail under low memory condition. To fix t
WARNING overcommit_memory is set to 0! Background save may fail under low memory condition. To fix this issue add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the command 'sys...原创 2019-10-11 13:46:31 · 2091 阅读 · 0 评论 -
WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is s
WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128.第一种方法。执行echo 511 > /proc/sys/net/core/somaxconn第二种方法 (永久解决)vi ...原创 2019-10-11 13:55:43 · 9050 阅读 · 0 评论 -
WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create laten
WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kerne...原创 2019-10-11 13:58:24 · 1564 阅读 · 0 评论