
Redis
nice_hui_
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
redis死锁处理
参见:https://redis.io/commands/setnx#handling-deadlocksHandling deadlocksWhen this happens we can’t just call DEL against the key to remove the lock and then try to issue a SETNX, as there is a race c...原创 2019-12-04 17:34:07 · 1911 阅读 · 0 评论 -
Redis、DB一致性
参考:https://www.cnblogs.com/rjzheng/p/9041659.html#!comments非强一致性优选 :先更新数据库,再删缓存首先,先说一下。老外提出了一个缓存更新套路,名为《Cache-Aside pattern》。其中就指出失效:应用程序先从cache取数据,没有得到,则从数据库中取数据,成功后,放到缓存中。命中:应用程序从cache中取数据,取到后返回...原创 2019-12-04 15:46:23 · 307 阅读 · 0 评论 -
布隆过滤器
https://www.jianshu.com/p/2104d11ee0a2https://hackernoon.com/probabilistic-data-structures-bloom-filter-5374112a7832https://www.jasondavies.com/bloomfilter/原创 2019-12-04 15:43:40 · 157 阅读 · 0 评论