热门标签
更多>
搜索结果
查询Tags标签: ZIPMAP,共有 2条记录-
漫话Redis源码之二
看了一下,zipmapDecodeLength的实现还挺巧妙的,直接使用内存操作:/* Decode the encoded length pointed by p */ static unsigned int zipmapDecodeLength(unsigned char *p) {unsigned int len = *p;if (len < ZIPMAP_BIGLEN) return len;memcpy(&len,p+1,siz…
2021/11/22 2:09:45 人评论 次浏览 -
漫话Redis源码之二
看了一下,zipmapDecodeLength的实现还挺巧妙的,直接使用内存操作:/* Decode the encoded length pointed by p */ static unsigned int zipmapDecodeLength(unsigned char *p) {unsigned int len = *p;if (len < ZIPMAP_BIGLEN) return len;memcpy(&len,p+1,siz…
2021/11/22 2:09:45 人评论 次浏览