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…
remoteSelf:1>hset website google "www.google.com" "1" remoteSelf:1>hget website "ERR wrong number of arguments for 'hget' command" remoteSelf:1>hget website google "www.google.com" remoteSelf:1>hset webs…