Charmed Redis
- Canonical
- Databases
Channel | Revision | Published | Runs on |
---|---|---|---|
latest/stable | 0 | 11 Nov 2020 | |
latest/edge | 0 | 11 Nov 2020 |
juju deploy redis
Deploy universal operators easily with Juju, the Universal Operator Lifecycle Manager.
Platform:
-
databases | int
Default: 16
Set the number of databases. The default database is DB 0. You can select a different one on a per-connection basis using SELECT <dbid> where dbid is a number between 0 and 'databases'-1.
-
logfile | string
Default: /var/log/redis/redis-server.log
Specify the log file name.
-
loglevel | string
Default: notice
Specify the Redis server verbosity level. Choices are:
- debug (a lot of information, useful for development/testing);
- verbose (many rarely useful info, but not a mess like the debug level);
- notice (moderately verbose, what you want in production probably);
- warning (only very important / critical messages are logged).
-
password | string
Require clients to issue AUTH <PASSWORD> before processing any other commands.
-
port | int
Default: 6379
Accept connections on the specified port.
-
tcp-keepalive | int
If non-zero, use SO_KEEPALIVE to send TCP ACKs to clients in absence of communication. This is useful to detect dead peers and to take the connection alive from the point of view of network quipment in the middle. The specified value is in seconds.
-
timeout | int
Close the connection after a client is idle for N seconds (0 to disable).