mirror of
https://github.com/joyieldInc/predixy.git
synced 2025-12-24 22:46:41 +08:00
32 lines
796 B
Plaintext
32 lines
796 B
Plaintext
## redis cluster server pool define
|
|
|
|
##ClusterServerPool {
|
|
## [Password xxx] #default no
|
|
## [MasterReadPriority [0-100]] #default 50
|
|
## [StaticSlaveReadPriority [0-100]] #default 0
|
|
## [DynamicSlaveReadPriority [0-100]] #default 0
|
|
## [RefreshInterval seconds] #default 1
|
|
## [ServerFailureLimit number] #default 10
|
|
## [ServerRetryTimeout seconds] #default 1
|
|
## Servers {
|
|
## + addr
|
|
## ...
|
|
## }
|
|
##}
|
|
|
|
|
|
## Examples:
|
|
#ClusterServerPool {
|
|
# MasterReadPriority 60
|
|
# StaticSlaveReadPriority 50
|
|
# DynamicSlaveReadPriority 50
|
|
# RefreshInterval 1
|
|
# ServerFailureLimit 10
|
|
# ServerRetryTimeout 1
|
|
# Servers {
|
|
# + 192.168.2.107:2211
|
|
# + 192.168.2.107:2212
|
|
# }
|
|
#}
|
|
|