You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
2.5 KiB

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

Redis支持五种数据类型string字符串hash哈希list列表set集合及zset(sorted set有序集合)。
# 一、String(字符串)
string是redis最基本的类型你可以理解成与Memcached一模一样的类型一个key对应一个value。
string类型是二进制安全的。意思是redis的string可以包含任何数据。比如jpg图片或者序列化的对象 。
string类型是Redis最基本的数据类型一个键最大能存储512MB。
`1. redis 127.0.0.1:6379> SET name "redis.net.cn"`
`2. OK`
`3. redis 127.0.0.1:6379> GET name`
`4. "redis.net.cn"`
在以上实例中我们使用了 Redis 的 **SET** 和 **GET** 命令。键为 name对应的值为redis.net.cn。
**注意:**一个键最大能存储512MB。
# 二、Hash(哈希)
Redis hash 是一个键值对集合。
Redis hash是一个string类型的field和value的映射表hash特别适合用于存储对象。一对多一个key对应多个value
![[Snipaste_2023-02-20_14-56-37.png]]
以上实例中 hash 数据类型存储了包含用户脚本信息的用户对象。 实例中我们使用了 Redis **HMSET, HEGTALL** 命令,**user:1** 为键值。
每个 hash 可以存储 232 - 1 键值对40多亿
# 三、List(列表)
Redis 列表是简单的字符串列表,按照插入顺序排序。你可以添加一个元素导列表的头部(左边)或者尾部(右边)。
![[Snipaste_2023-02-20_14-56-37 1.png]]
列表最多可存储 232 - 1 元素 (4294967295, 每个列表可存储40多亿)。
# 四、Set(集合)
Redis的Set是string类型的无序集合。集合是通过哈希表实现的所以添加删除查找的复杂度都是O(1)。
### sadd 命令
添加一个string元素到,key对应的set集合中成功返回1,如果元素以及在集合中返回0,key对应的set不存在返回错误。
![[Snipaste_2023-02-20_14-56-37 2.png]]
**注意:**以上实例中 rabitmq 添加了两次,但根据集合内元素的唯一性,第二次插入的元素将被忽略。
集合中最大的成员数为 232 - 1 (4294967295, 每个集合可存储40多亿个成员)。
# 五、zset(有序集合)
Redis zset 和 set 一样也是string类型元素的集合,且不允许重复的成员。不同的是每个元素都会关联一个double类型的分数。redis正是通过分数来为集合中的成员进行从小到大的排序。zset的成员是唯一的,但分数(score)却可以重复。
### zadd 命令
添加元素到集合元素在集合中存在则更新对应score
![[Snipaste_2023-02-20_14-56-37 3.png]]