springboot結合Redis實現工具類
自己整理了 spring boot 結合 Redis 的工具類
引入依賴
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
加入配置
# Redis資料庫索引(預設為0)
spring.redis.database=0
# Redis伺服器地址
spring.redis.host=localhost
# Redis伺服器連線埠
spring.redis.port=6379
推薦一個交流學習群:614478470 裡面會分享一些資深架構師錄製的視訊錄影:有Spring,MyBatis,Netty原始碼分析,高併發、高效能、分散式、微服務架構的原理,JVM效能優化這些成為架構師必備的知識體系。還能領取免費的學習資源,目前受益良多
點選:加入
實現程式碼
這裡用到了 靜態類工具類中 如何使用 @Autowired
package com.lmxdawn.api.common.utils;
import java.util.Collection;
import java.util.Set;
import java.util.concurrent.TimeUnit;
import javax.annotation.PostConstruct;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.stereotype.Component;
/**
* 快取操作類
*/
@Component
public class CacheUtils {
@Autowired
private RedisTemplate<String, String> redisTemplate;
// 維護一個本類的靜態變數
private static CacheUtils cacheUtils;
@PostConstruct
public void init() {
cacheUtils = this;
cacheUtils.redisTemplate = this.redisTemplate;
}
/**
* 將引數中的字串值設定為鍵的值,不設定過期時間
* @param key
* @param value 必須要實現 Serializable 介面
*/
public static void set(String key, String value) {
cacheUtils.redisTemplate.opsForValue().set(key, value);
}
/**
* 將引數中的字串值設定為鍵的值,設定過期時間
* @param key
* @param value 必須要實現 Serializable 介面
* @param timeout
*/
public static void set(String key, String value, Long timeout) {
cacheUtils.redisTemplate.opsForValue().set(key, value, timeout, TimeUnit.SECONDS);
}
/**
* 獲取與指定鍵相關的值
* @param key
* @return
*/
public static Object get(String key) {
return cacheUtils.redisTemplate.opsForValue().get(key);
}
/**
* 設定某個鍵的過期時間
* @param key 鍵值
* @param ttl 過期秒數
*/
public static boolean expire(String key, Long ttl) {
return cacheUtils.redisTemplate.expire(key, ttl, TimeUnit.SECONDS);
}
/**
* 判斷某個鍵是否存在
* @param key 鍵值
*/
public static boolean hasKey(String key) {
return cacheUtils.redisTemplate.hasKey(key);
}
/**
* 向集合新增元素
* @param key
* @param value
* @return 返回值為設定成功的value數
*/
public static Long sAdd(String key, String… value) {
return cacheUtils.redisTemplate.opsForSet().add(key, value);
}
/**
* 獲取集合中的某個元素
* @param key
* @return 返回值為redis中鍵值為key的value的Set集合
*/
public static Set<String> sGetMembers(String key) {
return cacheUtils.redisTemplate.opsForSet().members(key);
}
/**
* 將給定分數的指定成員新增到鍵中儲存的排序集合中
* @param key
* @param value
* @param score
* @return
*/
public static Boolean zAdd(String key, String value, double score) {
return cacheUtils.redisTemplate.opsForZSet().add(key, value, score);
}
/**
* 返回指定排序集中給定成員的分數
* @param key
* @param value
* @return
*/
public static Double zScore(String key, String value) {
return cacheUtils.redisTemplate.opsForZSet().score(key, value);
}
/**
* 刪除指定的鍵
* @param key
* @return
*/
public static Boolean delete(String key) {
return cacheUtils.redisTemplate.delete(key);
}
/**
* 刪除多個鍵
* @param keys
* @return
*/
public static Long delete(Collection<String> keys) {
return cacheUtils.redisTemplate.delete(keys);
}
}
推薦一個交流學習群,裡面會分享一些資深架構師錄製的視訊錄影:有Spring,MyBatis,Netty原始碼分析,高併發、高效能、分散式、微服務架構的原理,JVM效能優化這些成為架構師必備的知識體系。還能領取免費的學習資源,目前受益良多
點選:加入
相關文章
- spring boot 結合Redis 實現工具類Spring BootRedis
- 【SpringBoot】結合Redis實現快取Spring BootRedis快取
- SpringBoot整合Redis及Redis工具類撰寫Spring BootRedis
- Laravel 結合 Redis 實現 PHP 定時器LaravelRedisPHP定時器
- redis工具類Redis
- Redis 結合 Docker 搭建叢集,並整合SpringBootRedisDockerSpring Boot
- Redis 結合 Docker 搭建哨兵+主從,並整合SpringBootRedisDockerSpring Boot
- java Redis工具類JavaRedis
- SpringBoot中使用Redis實現快取Spring BootRedis快取
- 封裝Redis工具類封裝Redis
- redis配置和工具類Redis
- 15.SpringBoot整合Redis快取實現Spring BootRedis快取
- 資料庫工具類實現資料庫
- 結合 Laravel 實現檔案(PDF、world、Excel 之類)線上預覽?LaravelExcel
- Express 結合 Webpack 實現HMRwiExpressWeb
- redis資料結構實現(一)Redis資料結構
- Redis 字典結構實現分析BTRedis
- springboot和mybatis結合Spring BootMyBatis
- 結合實戰理解 Java 抽象類和介面Java抽象
- SpringBoot:結合 SpringBoot 與 Grails 3Spring BootAI
- openresty(nginx) redis 通用工具類RESTNginxRedis
- java連線Redis的工具類JavaRedis
- 服務閘道器 Zuul 與 Redis 結合實現 Token 許可權校驗ZuulRedis
- 讀寫分離很難嗎?springboot結合aop簡單就實現了Spring Boot
- springboot專案結合filter,jdk代理實現敏感詞過濾(簡單版)Spring BootFilterJDK
- SpringBoot整合Redis實戰Spring BootRedis
- SpringBoot整合Redis使用Restful風格實現CRUD功能Spring BootRedisREST
- SpringBoot快取管理(二) 整合Redis快取實現Spring Boot快取Redis
- 實現SpringBoot + Redis快取的原始碼與教程Spring BootRedis快取原始碼
- SpringBoot+Redis實現介面級別快取資訊Spring BootRedis快取
- SpringBoot+Redis 實現訊息訂閱釋出Spring BootRedis
- WPS表格技巧:分類彙總與自動篩選結合實現分類快速求和
- 談springboot兩種實現結構Spring Boot
- SpringBoot與mongodb的結合Spring BootMongoDB
- flutter+Springboot的結合FlutterSpring Boot
- 《閒扯Redis七》Redis字典結構的底層實現Redis
- 值得收藏的 ViewHolder 工具類實現View
- Redis分散式鎖升級版RedLock及SpringBoot實現Redis分散式Spring Boot