After executing the following commands:
127.0.0.1:6379> CONFIG GET appendonly # appendonly is off 1) "appendonly" 2) "no" 127.0.0.1:6379> CONFIG SET appendonly yes # Turn on appendonly OK 127.0.0.1:6379> CONFIG GET appendonly 1) "appendonly" 2) "yes" 127.0.0.1:6379> CONFIG REWRITE # Write the modification of appendonly to redis.conf OK
The appendonly option in the rewritten redis.conf file will be changed to:
# ... Other options appendonly yes # ... Other options
YouTip