Would this redis settings in wp-config.php (unmanaged Wordpress app) give any conflicts?
-
define('WP_REDIS_CONFIG', [
'token' => '...',
'host' => '127.0.0.1',
'port' => 6379,
'database' => 0, // change for each site
'timeout' => 0.5,
'read_timeout' => 0.5,
'retry_interval' => 10,
'retries' => 3,
'backoff' => 'smart',
'compression' => 'zstd', //zstd
compresses smaller,lz4
compresses faster
'serializer' => 'igbinary',
'async_flush' => true,
'split_alloptions' => true,
'prefetch' => true,
'debug' => false,
'save_commands' => false,
]);define('WP_REDIS_DISABLED', getenv('WP_REDIS_DISABLED') ?: false);
-