redis的数据结构
-
redis存储的是:key,value格式的数据,其中key都是字符串,value有物种不同的数据结构
- value的数据结构:
- 字符串类型 string
- 哈希类型 hash :map格式
- 列表类型 list :linkedlist格式
- 集合类型 set :
- 有序集合类型 sortedset
- value的数据结构:
-
字符串类型string
- 存储:set key value
- 获取:get key
- 删除 del key
-
哈希类型hash
- 存储:hset key field value
- 获取:hget key foeld
- 删除:hdel key foeld