Redis的数据结构
时间:2021-08-13 10:08:42
收藏:0
阅读:15
五种数据类型:
1、字符串(String):以二进制存储,最大512M
2、哈希(Hash):String Key和String Value的map容器,每一个Hash可以存储4294967295个键值对
3、字符串列表(List):常用于消息队列,rpoplpush
4、字符串集合(Set)
5、有序字符串集合(Sorted Set)
原文:https://www.cnblogs.com/youngerjoel/p/15135325.html
评论(0)