码迷,mamicode.com
首页 > 其他好文 > 详细

Redis 工具类

时间:2020-10-29 10:36:31      阅读:27      评论:0      收藏:0      [点我收藏+]

标签:缓存   value   code   str   autowired   工具类   one   private   ram   

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.core.StringRedisTemplate;
import org.springframework.stereotype.Component;
import java.util.Set;
import java.util.concurrent.TimeUnit;

@Component

public class RedisUtil {

@Autowired
private StringRedisTemplate stringRedisTemplate;

@Autowired
private RedisTemplate<Object, Object> redisTemplate;

public void set(String key, String value) {
    stringRedisTemplate.opsForValue().set(key, value);
}

public void set(String key, String value, long time) {
    stringRedisTemplate.opsForValue().set(key, value, time);
}

public void set(String key, String value, long time, TimeUnit unit) {
    // 向redis里存入数据和设置缓存时间
    stringRedisTemplate.opsForValue().set(key, value, time, unit);
}

public String get(String key) {
    return stringRedisTemplate.opsForValue().get(key);
}

public Set<String> getKeys(String pattern) {
    return stringRedisTemplate.keys(pattern);
}

public void delete(String key) {
    stringRedisTemplate.delete(key);
}

Redis 工具类

标签:缓存   value   code   str   autowired   工具类   one   private   ram   

原文地址:https://blog.51cto.com/7218743/2544681

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!