yiGmMk / comment_blog

the comments of www_programnotes_cn
0 stars 0 forks source link

redis base | 编程笔记 #130

Open yiGmMk opened 6 months ago

yiGmMk commented 6 months ago

https://programnotes.cn/redis_base_1/index.html

stringredis的string是动态字符串,可以修改底层结构,分为embStr和raw两种格式较短的使用embStr存储,最多44字节,更长的使用raw格式存储。两种格式的底层结构不同。 emb raw list底层数据结构:链表 插入、删除 O(1) 查询O(n) redis底层存储使用的不是简单的链表,使用了quicklist(快速链表:A doubly linked list o

yiGmMk commented 6 months ago

缓存常见模式 https://codeahoy.com/2017/08/11/caching-strategies-and-how-to-choose-the-right-one/