Guest User

Untitled

a guest
Nov 26th, 2017
386
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. # REDIS (RedisProperties)
  2. spring.redis.cluster.max-redirects= # Maximum number of redirects to follow when executing commands across the cluster.
  3. spring.redis.cluster.nodes= # Comma-separated list of "host:port" pairs to bootstrap from.
  4. spring.redis.database=0 # Database index used by the connection factory.
  5. spring.redis.url= # Connection URL, will override host, port and password (user will be ignored), e.g. redis://user:password@example.com:6379
  6. spring.redis.host=localhost # Redis server host.
  7. spring.redis.password= # Login password of the redis server.
  8. spring.redis.ssl=false # Enable SSL support.
  9. spring.redis.pool.max-active=8 # Max number of connections that can be allocated by the pool at a given time. Use a negative value for no limit.
  10. spring.redis.pool.max-idle=8 # Max number of "idle" connections in the pool. Use a negative value to indicate an unlimited number of idle connections.
  11. spring.redis.pool.max-wait=-1 # Maximum amount of time (in milliseconds) a connection allocation should block before throwing an exception when the pool is exhausted. Use a negative value to block indefinitely.
  12. spring.redis.pool.min-idle=0 # Target for the minimum number of idle connections to maintain in the pool. This setting only has an effect if it is positive.
  13. spring.redis.port=6379 # Redis server port.
  14. spring.redis.sentinel.master= # Name of Redis server.
  15. spring.redis.sentinel.nodes= # Comma-separated list of host:port pairs.
  16. spring.redis.timeout=0 # Connection timeout in milliseconds.
Add Comment
Please, Sign In to add comment