Enabling Redis setting in the config.local.php file
// Cache backend // Available backends: file, sqlite, database, redis, xcache, apc, apcu // To use sqlite cache the "sqlite3" PHP module should be installed // To use xcache cache the "xcache" PHP module should be installed // To use apc cache the "apc" PHP module should be installed // To use apcu cache the PHP version should be >= 7.x and the "apcu" PHP module should be installed $config['cache_backend'] = 'file'; $config['cache_redis_server'] = 'localhost'; $config['cache_redis_global_ttl'] = 0; // set this if your cache size reaches Redis server memory size // Storage backend for sessions. Available backends: database, redis $config['session_backend'] = 'database'; $config['session_redis_server'] = 'localhost'; $config['cache_apc_global_ttl'] = 0; $config['cache_xcache_global_ttl'] = 0;
If I change 'file' at line 118 to 'redis' my store closes.
Not sure why but on my server when I lookup if Redis is enabled I see this
So why does CS Cart V4.6.3 not work with redis as backend cache ?