Release Notes
Announcements
Parameter Name | Type | Default Value | Description | Recommended Value |
timeout | int | 3000ms | Timeout of Redis server response after the client sends a request | 3000ms |
retryAttempts | int | 3 | Number of retries for the client to send a command to Redis | 3 |
retryInterval | int | 1500ms | Time interval for the client to retry sending Redis commands | 200ms |
connectTimeout | int | 10000ms | Maximum waiting time for the client to attempt to establish a connection with Redis | 3000ms |
connectionPoolSize | int | 64 | Redis connection pool size | 200 |
connectionMinimumIdleSize | int | 24 | Minimum number of idle connections in the Redis connection pool | 50 |
idleConnectionTimeout | int | 10000ms | Timeout for idle connections in the Redis connection pool | 10000ms |
pingConnectionInterval | int | 30000ms | Time interval for sending PING commands to the Redis server | 1000ms |
// Redis instance access Virtual IP Address (VIP) addresstencent.redis.address=redis://XX.XX.XX.XX:6379// Instance access passwordtencent.redis.password=XXXX// Redis database index numbertencent.redis.database=0// Maximum waiting time for the client to attempt to establish a connection with Redistencent.redis.connect.timeout=3000// Timeout for idle connections in the Redis connection pooltencent.redis.connection.idle.timeout=10000// Time interval for sending PING commands to the Redis servertencent.redis.connection.ping.interval=1000// Redis server response timeouttencent.redis.timeout=2000// Minimum number of idle connections in the Redis connection pooltencent.redis.connection.pool.min.size=50// Maximum number of connections in the Redis connection pooltencent.redis.connection.pool.max.size=200// Number of retries for the client to send a command to Redistencent.redis.retry.attempts=3// Time interval for the client to retry sending Redis commandstencent.redis.retry.interval=200
tencent:redis:address: redis://XX.XX.XX.XX:6379password: XXXXdatabase: 0connect.timeout: 3000connection:idle.timeout: 10000ping.interval: 1000pool:min.size: 50max.size: 200timeout: 2000retry:attempts: 3interval: 200
フィードバック