3e5466ca5f
This is the 8.0.X series of redis Redis is an open source, advanced key-value store. It is often referred to as a data structure server since keys can contain strings, hashes, lists, sets and sorted sets. You can run atomic operations on these types, like appending to a string; incrementing the value in a hash; pushing to a list; computing set intersection, union and difference; or getting the member with highest ranking in a sorted set. In order to achieve its outstanding performance, Redis works with an in-memory dataset. Depending on your use case, you can persist it either by dumping the dataset to disk every once in a while, or by appending each command to a log. Redis also supports trivial-to-setup master-slave replication, with very fast non-blocking first synchronization, auto-reconnection on net split and so forth. WWW: https://redis.io/
39 lines
1.4 KiB
Plaintext
39 lines
1.4 KiB
Plaintext
--- redis.conf.orig 2025-07-06 11:59:42 UTC
|
|
+++ redis.conf
|
|
@@ -307,7 +307,7 @@ tcp-keepalive 300
|
|
# By default Redis does not run as a daemon. Use 'yes' if you need it.
|
|
# Note that Redis will write a pid file in /var/run/redis.pid when daemonized.
|
|
# When Redis is supervised by upstart or systemd, this parameter has no impact.
|
|
-daemonize no
|
|
+daemonize yes
|
|
|
|
# If you run Redis from upstart or systemd, Redis can interact with your
|
|
# supervision tree. Options:
|
|
@@ -339,7 +339,7 @@ daemonize no
|
|
#
|
|
# Note that on modern Linux systems "/run/redis.pid" is more conforming
|
|
# and should be used instead.
|
|
-pidfile /var/run/redis_6379.pid
|
|
+pidfile %%REDIS_RUNDIR%%/redis.pid
|
|
|
|
# Specify the server verbosity level.
|
|
# This can be one of:
|
|
@@ -353,7 +353,7 @@ loglevel notice
|
|
# Specify the log file name. Also the empty string can be used to force
|
|
# Redis to log on the standard output. Note that if you use standard
|
|
# output for logging but daemonize, logs will be sent to /dev/null
|
|
-logfile ""
|
|
+logfile %%REDIS_LOGDIR%%/redis.log
|
|
|
|
# To enable logging to the system logger, just set 'syslog-enabled' to yes,
|
|
# and optionally update the other syslog parameters to suit your needs.
|
|
@@ -513,7 +513,7 @@ rdb-del-sync-files no
|
|
# The Append Only File will also be created inside this directory.
|
|
#
|
|
# Note that you must specify a directory here, not a file name.
|
|
-dir ./
|
|
+dir %%REDIS_DBDIR%%/
|
|
|
|
################################# REPLICATION #################################
|
|
|