SpringBoot封裝redis連線池(二)

2021-10-23 20:54:39 字數 1277 閱讀 2959

org.springframework.boot

spring-boot-starter-data-redis

properties
# redis資料庫索引(預設為0)

spring.redis.database=0

# redis伺服器位址

spring.redis.host=localhost

# redis伺服器連線埠

spring.redis.port=6379

# redis伺服器連線密碼(預設為空)

spring.redis.password=123456

# 連線超時時間(毫秒)

spring.redis.timeout=10000

# 連線池最大連線數(使用負值表示沒有限制)

spring.redis.jedis.pool.max-active=8

# 連線池最大阻塞等待時間(使用負值表示沒有限制)

spring.redis.jedis.pool.max-wait=60000

# 連線池中的最大空閒連線

spring.redis.jedis.pool.max-idle=8

# 連線池中的最小空閒連線

spring.redis.jedis.pool.min-idle=0

yml
spring

:# redis

redis

:# redis資料庫索引(預設為0)

database:0

# redis伺服器位址

host

: localhost

# redis伺服器連線埠

port

:6379

# redis伺服器連線密碼(預設為空)

password

:123456

# 連線超時時間(毫秒)

timeout

:1000

jedis

:pool

:# 連線池最大連線數(使用負值表示沒有限制)

max-active:8

# 連線池最大阻塞等待時間(使用負值表示沒有限制)

max-wait

:5000

# 連線池中的最大空閒連線

max-idle:8

# 連線池中的最小空閒連線

min-idle

:0

配置類主要用來配置key和value的序列化及載入配置檔案中的相關引數

RED啟動ARED演算法

注 關於ared ared其實ns2包中是自帶的,在tcl指令碼語言中使用red演算法時加入以下引數擁塞演算法就變成ared了,在壓縮檔案中有ared的完整應用tcl檔案,自己看看吧。use new ared redq set adaptive 1 使adaptive 的值為1 即啟動ared 演算...

spring session使用配置redis

1.新增依賴 dependency groupid org.springframework.session groupid artifactid spring session data redis artifactid version 1.2.0.release version dependency...

Django session相關操作 redis

設定session11 request.session username chen 12 設定過期時間13 request.session.set expiry 30 14 返回json字串 15return httpresponse 首頁 161718 deflogin request 19if ...