Commit 9ad853cc authored by antirez's avatar antirez
Browse files

added new RDB codes for ziplist encoded lists and intset encodeed sets

parent 9fa7beb5
...@@ -72,6 +72,8 @@ ...@@ -72,6 +72,8 @@
#define REDIS_VMPOINTER 8 #define REDIS_VMPOINTER 8
/* Object types only used for persistence in .rdb files */ /* Object types only used for persistence in .rdb files */
#define REDIS_HASH_ZIPMAP 9 #define REDIS_HASH_ZIPMAP 9
#define REDIS_LIST_ZIPLIST 10
#define REDIS_SET_INTSET 11
/* Objects encoding. Some kind of objects like Strings and Hashes can be /* Objects encoding. Some kind of objects like Strings and Hashes can be
* internally represented in multiple ways. The 'encoding' field of the object * internally represented in multiple ways. The 'encoding' field of the object
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment