Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 1.2 KB

File metadata and controls

31 lines (21 loc) · 1.2 KB

Distributed James Server — redis.properties

This configuration helps you configure components using Redis. This so far only includes optional rate limiting component.

Consult this example to get some examples and hints.

Redis Configuration

Table 1. redis.properties content
Property name explanation

redisURL

the Redis URI pointing to Redis server. Compulsory.

redis.topology

Redis server topology. Defaults to standalone. Possible values: standalone, cluster, master-replica

redis.readFrom

The property to determine how Lettuce routes read operations to Redis server with topologies other than standalone. Defaults to master. Possible values: master, masterPreferred, replica, replicaPreferred, any

Reference: https://github.com/redis/lettuce/wiki/ReadFrom-Settings

redis.ioThreads

IO threads to be using for the underlying Netty networking resources. If unspecified driver defaults applies.

redis.workerThreads

Worker threads to be using for the underlying driver. If unspecified driver defaults applies.