I have installed memcached, but I'm stuck now with how to implement it in conjunction with Drupal. I've already installed and enabled the Drupal memcache module, but nobody seems to be able to offer clear instructions on how to edit settings.php. As the following is the least complicated I've chosen it, but I don't know what they mean by "own unique key prefix"; where am I supposed to find this? I don't seem to need RPM to make it work because I had that as well but removed it and memcached still works, so what is the deal with that on CentOS 6.3?
$conf['cache_backends'][] = 'sites/all/modules/memcache/memcache.inc';
$conf['cache_default_class'] = 'MemCacheDrupal';
$conf['memcache_key_prefix'] = 'something_unique';
// note : Replace the "something_unique" in the last line with your own unique memcache key prefix.