hash: Redis hash是一个string类型的field和value的映射表,hash特别适合用于存储对象。 Redis 中每个hash可以存储 232 – 1键值对(40多亿)。 实例: 127.0.0.1:6379> HMSET runoobkey name "redis tutorial" description "redis basic commands for caching" likes 20 visitors 23000 OK 127.0.0.1:6379> HGETALL runoobkey 1) "name" 2) "redis tutorial" 3) "de