Springboot如何操作redis数据
stringredistemplate与redistemplate区别点
两者的关系是stringredistemplate继承redistemplate。
两者的数据是不共通的;也就是说stringredistemplate只能管理stringredistemplate里面的数据,redistemplate只能管理redistemplate中的数据。
其实他们两者之间的区别主要在于他们使用的序列化类:
redistemplate使用的是jdkserializationredisserializer 存入数据会将数据先序列化成字节数组然后在存入redis数据库。
stringredistemplate使用的是stringredisserializer
使用时注意事项:
当你的redis数据库里面本来存的是字符串数据或者你要存取的数据就是字符串类型数据的时候,那么你就使用
stringredistemplate即可。
但是如果你的数据是复杂的对象类型,而取出的时候又不想做任何的数据转换,直接从redis里面取出一个对象,那么使用
redistemplate是更好的选择。
redistemplate使用时常见问题:
redistemplate 中存取数据都是字节数组。当redis中存入的数据是可读形式而非字节数组时,使用redistemplate取值的时候会无法获取导出数据,获得的值为null。可以使用 stringredistemplate 试试。
redistemplate中定义了5种数据结构操作
- redistemplate.opsforvalue(); //操作字符串
- redistemplate.opsforhash(); //操作hash
- redistemplate.opsforlist(); //操作list
- redistemplate.opsforset(); //操作set
- redistemplate.opsforzset(); //操作有序set
stringredistemplate常用操作
- stringredistemplate.opsforvalue().set("test", "100",60*10,timeunit.seconds);//向redis里存入数据和设置缓存时间
- stringredistemplate.boundvalueops("test").increment(-1);//val做-1操作
- stringredistemplate.opsforvalue().get("test")//根据key获取缓存中的val
- stringredistemplate.boundvalueops("test").increment(1);//val +1
- stringredistemplate.getexpire("test")//根据key获取过期时间
- stringredistemplate.getexpire("test",timeunit.seconds)//根据key获取过期时间并换算成指定单位
- stringredistemplate.delete("test");//根据key删除缓存
- stringredistemplate.haskey("546545");//检查key是否存在,返回boolean值
- stringredistemplate.opsforset().add("red_123", "1","2","3");//向指定key中存放set集合
- stringredistemplate.expire("red_123",1000 , timeunit.milliseconds);//设置过期时间
- stringredistemplate.opsforset().ismember("red_123", "1")//根据key查看集合中是否存在指定数据
- stringredistemplate.opsforset().members("red_123");//根据key获取set集合
stringredistemplate的使用
springboot中使用注解@autowired 即可
@autowired
public stringredistemplate stringredistemplate;
使用样例:
@restcontroller @requestmapping("/user") public class userresource { private static final logger log = loggerfactory.getlogger(userresource.class); @autowired private userservice userservice; @autowired public stringredistemplate stringredistemplate; @requestmapping("/num") public string countnum() { string usernum = stringredistemplate.opsforvalue().get("usernum"); if(stringutils.isnull(usernum)){ stringredistemplate.opsforvalue().set("usernum", userservice.countnum().tostring()); } return usernum; } }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: bat与注册表操作的方法分析 原创