Got it. For immediate resolution, I’ve spun up a new one with cluster_mode disabled.
I’m curious on your take for ideal setup. Right now I have 14 WP sites which will probably grow to 20 in the next 12 months. I was setting up multiple databases per redis so that I didn’t need to spin up a separate redis server for each site.
Is it best practice to spin up a separate one for each site? If so, any thoughts on sizing? Trying to avoid unnecessary spending.
-
This reply was modified 2 years, 2 months ago by bradjon.
Aha! That makes sense. Here’s what I have:
define( ‘WP_REDIS_HOST’, ‘redacted.h07z7u.clustercfg.use1.cache.amazonaws.com’ );
define( ‘WP_REDIS_PORT’, 6379 );
define( ‘WP_REDIS_DATABASE’, 2 );
define( ‘WP_REDIS_PREFIX’, ‘app-redacted-com’ );
So, is it just that I change WP_REDIS_HOST to WP_REDIS_CLUSTER?