Redis存储支持的类型没有object,虽然有支持list,但是它只支持list。
现在有两个方法存储对象与泛型。
1、用序列化与反序列化。
2、json
本文采用的是json格式来存储object类型。
废话不多说,直接上代码
public class redisTest{
/**
*使用redis自带的工具类
*也可以自己写一个redis工具类(不推荐)
/
@Autowired
private RedisTemplate<String ,Object> redisTemplate;
@Autowired
private StudentsDao studentsDao;
public void studentsRedis(){
ValueOperations<String, Object> operations = redisTemplate.opsForValue();
Students student = new Students();
List<Students> list = studentsDao.getlist();
//将Students转换为json格式
JSONObject jsonObject = JSONObject.fromObject(student);
//将json转换为json字符串
String str = jsonObject.toString();
//吧Students这个对象存放到redis中
operations.set("key",str);
}
}
现在的样子就是吧object对象存放到redis中去了。
取得时候吧json转换为需要的对象。
public void getRedis(){
public List<Students> getStu(int stuId){
List<Students> students =null;
ValueOperations<String, Object> operations = redisTemplate.opsForValue();
//吧json字符串转换成json
String str = (String) operations.get("key" + stuId);
//吧json转换成对象
ObjectMapper mapper = new ObjectMapper();
Students stu = mapper.readValue(str , Students .class);
}
}
搞定!!!!
总结:正常情况下序列化效率挺高,但是如果碰到高并发的情况下,序列化与反序列化消耗太高,redis不支持存储object与泛型,是有理由的,所以还是用json比较好实现,简单。
吧object和list<>转成json的字符串格式在set到redis中去,获取的时候在吧json转换成需要的对象,这样简单快捷,快操作试一试吧。