前言:
- redis缓存的hash数据类型可以让用户将多个key-value对存储到一个redis键里,适合用来存储对象。
- 本文介绍在spring-redis环境上使用RedisTemplate操作对象。
- 接下来的测试是建立在spring-redis环境上的,没有整合spring redis环境则无法与redis缓存进行交互。
实际操作:
- 创建对象并以hash数据类型保存到redis缓存
package com.server;
import java.util.Map;
import java.util.concurrent.TimeUnit;
import org.redisson.api.RedissonClient;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.HashOperations;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.stereotype.Service;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.pojo.Student;
@Service
public class StudentServer {
@Autowired
private RedisTemplate redisTemplate;//redisTemplate操作redis
public void setmap(){
Student stu=new Student();
stu.setStuid("1001");
stu.setStuname("hashtest");//生成一个Student对象
stu.setStugender("man");
//标志map的键、标志value的key、value
HashOperations<String, String, String> map=redisTemplate.opsForHash();
//向键名为stu.getStuid的map对象存储key-value对
map.put(stu.getStuid, "name", stu.getStuname);
map.put(stu.getStuid, "gender", stu.getStugender);
//设置100 seconds存活时间
redisTemplate.expire(stu.getStuid, 100, TimeUnit.SECONDS);
}
运行之后:
- . 用 hgetall map键名 命令查看redis缓存中的hash数据;
- . 用 hget map键名 key 命令查看指定key的value;
- . 用 ttl map键名 查看剩余存活时间;
- . 用 keys * 查看redis中所有键名。
- 获取redis缓存中的map数据并输出到myeclipse控制台
public void getmao(){
long starttime=System.currentTimeMillis();
//entires() 从redis中获取map数据
Map stumap=redisTemplate.boundHashOps("1001").entries();
System.out.println("map对象:"+stumap);
System.out.println(stumap.get("name"));
long endtime=System.currentTimeMillis();
System.out.println("运行时间:"+( endtime-starttime)+"ms");
}
运行结果: