1
我已經安裝分佈式緩存和Drupal模塊內存緩存和在Linux命令行:哪裏是獨特的memcache密鑰前綴?
-bash-4.1# netstat -tap | grep memcached
TCP 0 0 *:內存緩存: LISTEN 8431 /分佈式緩存
TCP 0 0 *:內存緩存: 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鍵前綴」?