Through some trial and error, I learned this works:

$conf = array(
'cache_inc' => 'sites/default/modules/memcache/memcache.inc',
  'memcache_servers' => array(
    'localhost:11211' => 'default',
  ),  
  'memcache_bins' => array(
    'cache' => 'default',
    'cache_filter' => 'filter',
    'cache_menu' => 'menu',
  ),  
);

But this does not:

$conf = array(
'cache_inc' => 'sites/default/modules/memcache/memcache.inc',
  'memcache_servers' => array(
    'localhost:11211' => 'default',
  ),  
  'memcache_bins' => array(
    'cache' => 'default',
    'cache_filter' => 'default',
    'cache_menu' => 'default',
  ),  
);

I'm not sure why the former isn't the one that is broken, though. Don't you assign a bin to a cluster? "Filter" and "menu" are not clusters.

Comments

jeffsheltren’s picture

Status: Active » Postponed (maintainer needs more info)

What errors do you get with the not-working configuration?

erikwebb’s picture

Status: Postponed (maintainer needs more info) » Closed (cannot reproduce)