学习地址:
https://www.cnblogs.com/liuqijia/p/11428145.html
https://www.runoob.com/redis/redis-data-types.html
https://www.cnblogs.com/renpingsheng/p/9778433.html
Redis 支持五种数据类型:
string(字符串)、hash(哈希)、list(列表)、set(集合)及 zset (sorted set:有序集合)。
1、string(字符串):
特点:一个键名(key)存储一个值(value(string))
数据形式:
key=>value
value 为字符串(string)。
redis 的 string 可以包含任何数据。比如 jpg 图片或者序列化的对象。
2、hash(哈希)
特点:一个 key 存储多个键值对(key=>value)
数据形式:
key => [
key => value,
key => value,
key => value,
...
]
value 为字符串(string)。
redis 的 string 可以包含任何数据。比如 jpg 图片或者序列化的对象。
与 string 的区别在于 key 对应的是多个键值对集合。
3、list(列表):
特点:数据有序,不唯一,也就是我们常说的队列。
数据形式:
key => [
0 => value,
1 => value,
2 => value,
...
]
value 为字符串(string)。
redis 的 string 可以包含任何数据。比如 jpg 图片或者序列化的对象。
4、set(集合):
特点:数据无序,唯一。
数据形式:
key => [
value,
value,
value,
...
]
value 为字符串(string)。
redis 的 string 可以包含任何数据。比如 jpg 图片或者序列化的对象。
5、zset (sorted set:有序集合):
特点:数据有序,唯一。
数据形式 (Score 起到标明权重的作用,越大越靠前):
key => [
0 => ['Score' => value],
1 => ['Score' => value],
2 => ['Score' => value],
...
]
value 为字符串(string)。
redis 的 string 可以包含任何数据。比如 jpg 图片或者序列化的对象。
个人理解,如有问题,请各位大佬不吝赐教 (✪ω✪)