本文首发于 cartoon 的博客
转载请注明出处:https://cartoonyu.github.io/c…
-
Jedis 和 Redisson 有哪些区别
-
参考博客
- https://blog.csdn.net/moonpur…
-
Jedis
-
优点
- 轻量简洁
- 支持连接池
- 支持 pipelining、事务、LUA Scripting、Redis Sentinel、Redis Cluster
-
缺点
- 不支持读写分离
- 文档支持不足
-
-
Redisson
- 官方推荐
-
优点
- 采用非阻塞 IO
- 支持异步请求
- 支持连接池
- 支持 pipelining、LUA Scripting、Redis Sentinel、Redis Cluster
- 支持读写分离以及读负载平衡
- 可与 Spring Session 集成
- 文档支持充足
-
-
怎么保证缓存和数据库数据的一致性
- 先删除缓存再更新数据库
-
Redis 持久化有几种方式
- 参考博客:https://blog.csdn.net/chajing…
- Snapshotting(快照存储,默认存储方式)
- Append-only file(追加写入)
- 虚拟内存(2.4 之后已 desprecated)
- diskstore
-
Redis 怎么实现分布式锁
- 尚未了解 加粗样式