Redis的redisTemplate.opsForValue()
作者:互联网
\xAC\xED\x00\x05t\x00\x132021_7_22_testvalue
问:为什么对数据操作要加上 【 .opsForValue()】?
答:没什么原因,单纯就是 spring 对 redis 的所有指令做了封装,每个类型一个对应的操作对象。你看 redisTemplate 的源码就能看出来。
理解详细地址:
http://357029540.iteye.com/blog/2388965
http://www.cnblogs.com/songanwei/p/9274348.html 详细
全部的方法对应对应的对象!!! redisTemplate.opsForValue();//操作字符串 redisTemplate.opsForHash();//操作hash redisTemplate.opsForList();//操作list redisTemplate.opsForSet();//操作set redisTemplate.opsForZSet();//操作有序set
RedisTemplate之opsForValue使用说明
的相关博客
标签:2522%,opsForValue,Redis,blog,E4%,操作,redisTemplate 来源: https://blog.csdn.net/Lin_SkySea/article/details/118973961