Idea使用Spring Data Redis 快速操作Redis数据库
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.Service;
@Service
public class RedisService {
@Autowired
private StringRedisTemplate stringRedisTemplate;
public void setKey(String key, String value) {
stringRedisTemplate.opsForValue().set(key, value);
}
public String getKey(String key) {
return stringRedisTemplate.opsForValue().get(key);
}
public void deleteKey(String key) {
stringRedisTemplate.delete(key);
}
}
这段代码展示了如何在Spring Boot应用中使用StringRedisTemplate
操作Redis数据库。setKey
方法用于设置键值对,getKey
用于获取键对应的值,deleteKey
用于删除一个键。这个例子简单明了,并且使用了Spring Data Redis提供的opsForValue()
方法,它提供了基本的字符串操作。
评论已关闭