Replies: 0
Hi…
do i also need to define a database for this to work on multiple sites? eg
site 1
define( ‘WP_REDIS_DATABASE’, ‘0’ );
define( ‘WP_CACHE_KEY_SALT’, ‘site1 );
define( ‘WP_REDIS_SELECTIVE_FLUSH’, true);
site2
define( ‘WP_REDIS_DATABASE’, ‘1’ );
define( ‘WP_CACHE_KEY_SALT’, ‘site2’ );
define( ‘WP_REDIS_SELECTIVE_FLUSH’, true);
or will it just work without?