[redis设计与实现][7]基本数据结构——对象
Redis对基础数据类型进行了封装,构建出上层的对象系统,这个系统包含:字符串对 … Continue reading “[redis设计与实现][7]基本数据结构——对象” →
Today will be better
Redis对基础数据类型进行了封装,构建出上层的对象系统,这个系统包含:字符串对 … Continue reading “[redis设计与实现][7]基本数据结构——对象” →
整数集合(intset)用于集合键。当一个集合只包含整数值元素,并且数量不多的时 … Continue reading “[redis设计与实现][5]基本数据结构——整数集合” →
Redis使用跳跃表和字典共同来实现有序集合键(sorted set)。 定义: … Continue reading “[redis设计与实现][4]基本数据结构——跳跃表” →
snoopy是什么?刚了解这货的时候,是公司服务器上有snoopy的so无法加载 … Continue reading “snoopy初探” →
之前在虚拟机里面安装了个gentoo,用来尝试安装kde5。在升级系统的时候,发 … Continue reading “gentoo vlc qt5环境下编译失败” →
Redis字典采用哈希表实现。 哈希表: [cce lang=”c”] type … Continue reading “[redis设计与实现][3]基本数据结构——字典” →
链表在Redis中的应用: * 列表键 * 发布与订阅 * 慢查询 * 监视器等 … Continue reading “[redis设计与实现][2]基本数据结构——链表” →
SDS(Simple Dynamic String):对C字符串的封装,可修改、 … Continue reading “[redis设计与实现][1]基本数据结构——sds” →
之前参照yegal的文章在mac上安装了gentoo-prefix。但是在eme … Continue reading “mac gentoo-prefix安装git svn” →
redis主备同步非常方便,通过slaveof命令即可同步。上周应用切换了red … Continue reading “redis误同步恢复” →