1、pom.xml中引入redis
org.springframework.boot
spring-boot-starter-data-redis
io.lettuce
lettuce-core
redis.clients
jedis
將預設的管理工具lettuce替換為jedis
#redis資料庫索引
spring.redis.database=0
#redis伺服器位址
spring.redis.host=192.168.150.130
#埠spring.redis.port=6379
#密碼spring.redis.password=123456
#連線池最大連線數(負值表示沒限制)
apring.redis.pool.max-active=200
#連線池最大阻塞等待時間(負值表示沒限制)
spring.redis.pool.max-wait=-1
#連線池中的最大空閒連線
spring.redis.pool.max-idle=10
#連線池中的最小空閒連線
spring.redis.pool.min-idle=0
#連線超時時間(毫秒)
spring.redis.timeout=1000
3、在controller中使用redis快取
@autowired
redistemplate redistemplate;
@autowired
stringredistemplate stringredistemplate;
public void testredis()
4、啟動專案,在瀏覽器中訪問http://localhost:8888/redis,會將vop存入到redis中,可以進入linux伺服器檢視
SpringBoot的快取處理及整合Redis
前言 本文不編寫快取的具體實現 只講解一些關於快取的具體知識點 關於快取 spring從3.1開始定義了org.springframework.cache.cache 和org.springframework.cache.cachemanager介面來統一不同的快取技術 並支援使用jcache js...
11分鐘學會SpringBoot整合redis元件
本人部落格 不要跟過去的自己比,要期待未來的自己,珍愛現在的自己 org.springframework.bootgroupid spring boot starter data redisartifactid dependency redis資料庫索引 預設為0 spring.redis.data...
RE模組的學習
re模組是什麼 基礎方法有哪些 在python中使用正規表示式的特點和問題 使用正規表示式的技巧 爬蟲的例子 findall 返回列表 找所有的匹配項 search 匹配就 返回乙個變數,通過group取匹配到的第乙個值,不匹配就返應none,group會報錯 match 相當於search的正規表...