πŸ‡¨πŸ‡¦Canada @fozboz

Account created on 6 April 2023, about 1 year ago
#

Recent comments

πŸ‡¨πŸ‡¦Canada fozboz

I was experiencing the same issue. Try adding this to your settings.php.

$settings['memcache']['options'] = [
  Memcached::OPT_DISTRIBUTION => Memcached::DISTRIBUTION_CONSISTENT
  Memcached::OPT_REMOVE_FAILED_SERVERS => true
];

The README states that DISTRIBUTION_CONSISTENT is the default, but according to the PHP memcached manual the default is in fact DISTRIBUTION_MODULA.

Additionally, you need OPT_REMOVE_FAILED_SERVERS enabled in order for keys to be routed to the other servers, otherwise you will experience a big slow down in your site while it tries and retries to get/set keys on the bad server.

πŸ‡¨πŸ‡¦Canada fozboz

Here's a patch for version 1.0.0-rc1.

πŸ‡¨πŸ‡¦Canada fozboz

fozboz β†’ created an issue.

Production build 0.69.0 2024