Hi @max_morais_dmm error log says redis cache error is due to ‘save “”’ whereas redis_cache.conf has - save"" .
redis-cache.error.log:
*** FATAL CONFIG FILE ERROR ***
Reading the configuration file, at line 6
>>> 'save ""'
Bad directive or wrong number of arguments
*** FATAL CONFIG FILE ERROR ***
Reading the configuration file, at line 6
>>> 'save ""'
Bad directive or wrong number of arguments
*** FATAL CONFIG FILE ERROR ***
Reading the configuration file, at line 6
>>> 'save ""'
Bad directive or wrong number of arguments
*** FATAL CONFIG FILE ERROR ***
Reading the configuration file, at line 6
>>> 'save ""'
Bad directive or wrong number of arguments
*** FATAL CONFIG FILE ERROR ***
Reading the configuration file, at line 6
redis_cache.conf details:
dbfilename redis_cache_dump.rdb
pidfile redis_cache.pid
port 11311
maxmemory 50mb
maxmemory-policy allkeys-lru
save""
appendonly no
· Save the DB on disk:
· save ‘seconds’ ‘changes’
· Will save the DB if both the given number of seconds and the given
· number of write operations against the DB occurred.
· In the example below the behaviour will be to save:
· after 900 sec (15 min) if at least 1 key changed
· after 300 sec (5 min) if at least 10 keys changed
· after 60 sec if at least 10000 keys changed
· Note: you can disable saving at all commenting all the “save” lines.