
redis
文章平均质量分 83
睡竹
一个平平淡淡的码农
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
解决NOAUTH HELLO must be called with the client already authenticated, otherwise the HELLO AUTH <user>
解决NOAUTH HELLO must be called with the client already authenticated, otherwise the HELLO AUTH option can be used to authenticate the client and select the RESP protocol version at the same time原创 2024-06-19 10:57:06 · 5218 阅读 · 0 评论 -
redis缓存穿透、案例
缓存穿透是指查询一个一定不存在的数据,由于缓存是不命中时需要从数据库查询,查不到数据则不写入缓存,这将导致这个不存在的数据每次请求都要到数据库去查询,进而给数据库带来压力。如下:(注意:上述设置只是临时的,当mysql重启后,最大连接数会重置至默认状态)模拟当恶意用户使用大量非法参数的请求时,能。,从而实现服务器性能下降。原创 2023-04-09 13:21:23 · 606 阅读 · 0 评论 -
布隆过滤器讲解及基于Guava BloomFilter案例
布隆过滤器讲解及基于Guava BloomFilter案例原创 2023-04-08 13:14:13 · 2244 阅读 · 0 评论 -
redis集群搭建
redis集群搭建cluster-require-full-coverage原创 2023-04-05 18:06:15 · 2425 阅读 · 0 评论 -
redis哨兵模式sentinel
redis哨兵模式sentinelreplica-prioritysentinel monitor mymaster原创 2023-04-05 10:46:21 · 919 阅读 · 0 评论 -
redis主从复制之薪火相传与反客为主
redis主从复制之薪火相传与反客为主slaveof no one原创 2023-04-04 21:08:55 · 613 阅读 · 0 评论 -
redis主从复制
redis主从复制原创 2023-04-03 22:40:25 · 570 阅读 · 0 评论 -
redis持久化操作-AOF方式
redis持久化操作-AOF方式原创 2023-04-02 21:38:40 · 332 阅读 · 0 评论 -
redis持久化操作-RDB方式
redis持久化操作-RDB方式原创 2023-04-02 20:04:54 · 250 阅读 · 0 评论 -
springboot整合redis实现秒杀功能
springboot整合redis实现秒杀功能原创 2023-03-30 20:06:43 · 1294 阅读 · 0 评论 -
Redis事务
Redis事务事务的特性、multi、exec、discard命令使用原创 2023-03-27 21:51:44 · 482 阅读 · 0 评论