一切福田,不離方寸,從心而覓,感無不通。

RedisTemplate最全的常用方法

1.RedisTemplate常用方法
2.String类型
3.Hash类型
4.List类型
5.Set类型
6.zSet类型
Redis常用的数据类型:String、Hash、List、Set、zSet

1.RedisTemplate常用方法

 

2.String类

ValueOperations opsForValue = redisTemplate.opsForValue();

 

3.Hash类型

HashOperations opsForHash = redisTemplate.opsForHash();

 

4.List类型

ListOperations opsForList = redisTemplate.opsForList();

5.Set类型

SetOperations opsForSet = redisTemplate.opsForSet();

 

6.zSet类型

ZSetOperations提供了一系列方法对有序集合进行操作
ZSetOperations opsForZSet = redisTemplate.opsForZSet();

 

————————————————

原文链接:https://blog.csdn.net/weixin_44972575/article/details/107107489

from:https://blog.csdn.net/yucaifu1989/article/details/124631785