memcached と drupal モジュール memcache を Linux コマンド ラインにインストールしました。
-bash-4.1# netstat -tap | grep memcached
tcp 0 0 *:memcache : LISTEN 8431/memcached
tcp 0 0 *:memcache : LISTEN 8431/memcached
IP とポートをリッスンしているように見えますが、現在は drupal 7.18 で動作するようになっているので、何が起こっているのかがわかりますか?
次の指示に従います。
$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. */
「独自の memcache キー プレフィックス」はどこにありますか?