
redis
bachelorchen
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
redis sorted set
The t_zset.c contains the sorted set code. work to do:原创 2014-06-05 23:09:51 · 440 阅读 · 0 评论 -
Arrays of Length Zero
redis strings struct struct sdshdr { long len; long free; char buf[]; }; sizeof原创 2014-05-25 23:22:00 · 718 阅读 · 0 评论 -
do{}while(0);
第一次在 redis 的 dict 源码中看到这种用法。原创 2014-05-29 17:50:14 · 615 阅读 · 0 评论 -
redis, dict, hashtable
two hash functions /* And a case insensitive hash function (based on djb hash) */ unsigned int dictGenCaseHashFunction(const unsigned char *buf, int len) { unsigned int hash = (unsigned int)dict_原创 2014-06-02 17:12:51 · 594 阅读 · 0 评论 -
redis file mapping
dynamic string: sds.h, sds.c list: adlist.h, adlist.c dict: dict.h, dict.c原创 2015-07-23 10:53:28 · 325 阅读 · 0 评论