2022年5月23日

摘要: 数据类型-String 在讲String数据类型前,先引入一个新的对象RedisObject,其扮演着用户数据类型同底层数据结构之间桥梁的关系. typedef struct redisObject { unsigned type:4; //面向用户的数据类型(String/List/Hash/Se 阅读全文
posted @ 2022-05-23 23:43 技术杂tan 阅读(116) 评论(0) 推荐(0)

2022年3月3日

摘要: 底层数据结构-SDS SDS数据结构 typedef char *sds; //sds本质也是字符串数组 /* Note: sdshdr5 is never used, we just access the flags byte directly. * However is here to docu 阅读全文
posted @ 2022-03-03 23:36 技术杂tan 阅读(157) 评论(0) 推荐(0)

导航