整数集合是纯整数时set的底层实现
typedef struct intset { uint32_t encoding; uint32_t length; int8_t contents[]; } intset;
整数集合的特点
redis数据结构-intset
原文:https://www.cnblogs.com/liuboyuan/p/14731505.html