(1)pom.xml檔案引入jar包,如下:
org.springframework.bootspring-boot-starter-data-redis
# redis資料庫索引(預設為0)(3)測試redis快取spring.redis.database=0# redis伺服器位址
spring.redis.host=172.31.19.222# redis伺服器連線埠
spring.redis.port=6379# redis伺服器連線密碼(預設為空)
spring.redis.password=# 連線池最大連線數(使用負值表示沒有限制)
spring.redis.pool.max-active=8# 連線池最大阻塞等待時間(使用負值表示沒有限制)
spring.redis.pool.max-wait=-1# 連線池中的最大空閒連線
spring.redis.pool.max-idle=8# 連線池中的最小空閒連線
spring.redis.pool.min-idle=0# 連線超時時間(毫秒)
spring.redis.timeout=0
package(4)啟動專案,呼叫reidshandler方法,查詢redis伺服器資訊,如下:springboot.web;
import
org.springframework.beans.factory.annotation.autowired;
import
org.springframework.data.redis.core.stringredistemplate;
import
import
org.springframework.web.bind.annotation.restcontroller;
@restcontroller
public
class
hellocontroller
}
spring session使用配置redis
1.新增依賴 dependency groupid org.springframework.session groupid artifactid spring session data redis artifactid version 1.2.0.release version dependency...
使用Cacti監控MongoDB和Redis
cacti 是一套基於php,mysql,snmp及rrdtool開發的網路流量監測圖形分析工具。被廣泛的用於對伺服器的運維監控中,cacti提供了一種外掛程式式的管理,只要按要求寫好特定的模板,那麼你就可以對任何服務進行流量監控 本文就是要為大家介紹兩個模板,分別是mongodb 和redis 的...
JAVA使用pipeline批量寫Redis資料
最近遇到乙個需求,需要把資料庫中的手機號批量寫入到資料庫,使用了很多的方法都效能不佳或者出現連線池斷開的問題,最後在網上找到了這個方法 public static void main string args throws exception long end system.currenttimemi...