⇤ ← Revision 1 as of 2023-04-08 22:36:30
Size: 1030
Comment:
|
← Revision 2 as of 2023-04-08 22:36:56 ⇥
Size: 1043
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 34: | Line 34: |
redis:latest --save 60 1 --loglevel warning | redis:latest redis-server --save 60 1 --loglevel warning |
Redis
Redis is a key-value database.
Contents
Installation
Most Linux distributions offer a redis package.
For systemd-capable systems, start and enable redis.service.
Containers
Docker container images are also available for recent versions. The images are available from DockerHub as docker.io/library/redis (or simply redis when using docker(1) specifically).
Try:
sudo docker run --detach --name my-redis redis:latest
To run with persistent storage, try:
sudo docker run --detach --name my-redis \ --mount type=bind,src=/path/to/cache,dst=/data \ redis:latest redis-server --save 60 1 --loglevel warning
This causes a data snapshot to be written to the data directory every 60 seconds if there was at least 1 write operation.
Configuration