mirror of
https://github.com/Hello-hao/Tbed.git
synced 2024-04-21 12:32:10 +00:00
重构版功能实现
This commit is contained in:
@@ -0,0 +1,53 @@
|
||||
package cn.hellohao.service.impl;
|
||||
|
||||
import cn.hellohao.service.IRedisService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.data.redis.core.RedisTemplate;
|
||||
import org.springframework.data.redis.core.StringRedisTemplate;
|
||||
import org.springframework.data.redis.core.ValueOperations;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.util.Map;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
|
||||
@Service
|
||||
public class RedisServiceImpl implements IRedisService {
|
||||
@Autowired
|
||||
private StringRedisTemplate stringRedisTemplate;
|
||||
@Autowired
|
||||
private RedisTemplate redisTemplate;
|
||||
|
||||
|
||||
@Override
|
||||
public void setValue(String key, Map<String, Object> value) {
|
||||
ValueOperations<String, Object> vo = redisTemplate.opsForValue();
|
||||
vo.set(key, value);
|
||||
redisTemplate.expire(key, 1, TimeUnit.HOURS); // 这里指的是1小时后失效
|
||||
}
|
||||
|
||||
@Override
|
||||
public Object getValue(String key) {
|
||||
ValueOperations<String, String> vo = redisTemplate.opsForValue();
|
||||
return vo.get(key);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setValue(String key, String value) {
|
||||
ValueOperations<String, Object> vo = redisTemplate.opsForValue();
|
||||
vo.set(key, value);
|
||||
redisTemplate.expire(key, 3, TimeUnit.MINUTES); // 这里指的是1小时后失效 时HOURS 分 MINUTES
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setValue(String key, Object value) {
|
||||
ValueOperations<String, Object> vo = redisTemplate.opsForValue();
|
||||
vo.set(key, value);
|
||||
redisTemplate.expire(key, 1, TimeUnit.HOURS); // 这里指的是1小时后失效
|
||||
}
|
||||
|
||||
@Override
|
||||
public Object getMapValue(String key) {
|
||||
ValueOperations<String, String> vo = redisTemplate.opsForValue();
|
||||
return vo.get(key);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user