redis
文章平均质量分 77
nullpointer
这个作者很懒,什么都没留下…
展开
-
redis作者讲述VM的替代者diskstore
a few months after VM started to work my feeling about it started to be not very good. I stated in the blog, and privately on IRC, especially talking with Pieter, that VM was not the way to go for t转载 2012-12-07 14:33:21 · 852 阅读 · 0 评论 -
simple skiplist implementation in c
#ifndef MY_SKIP_LIST #define MY_SKIP_LIST #include #include #include typedef int DataType; #define MAX_LEVEL 8 struct DataNode; typedef struct NodeLevel { struct DataNode * forward; u原创 2015-01-13 09:00:44 · 836 阅读 · 0 评论