redis不是一个纯文本kv存储,实际上,它是一个数据结构服务,支持不同类型的value. 包含以下类型: 1.Binary-safe strings. 二进制安全的字符串 2.Lists: collections of string elements sorted according to the order of insertion. 按照插入顺序排序 They are basically linked lists. 基于链表 3.Sets: collections of unique, u…
在redis.c的initServerConfig()方法中,通过调用dictCreate方法初始化server端的命令表.这个命令表是一个hashtable,可以通过key找到相关的命令: /* Command table -- we initiialize it here as it is part of the* initial configuration, since command names may be changed via* redis.conf using the renam…