Memcache和PHP memcach擴展安裝請見http://koda.iteye.com/blog/665761
設置session用memcache來存儲
方法I: 在 php.ini 中全局設置 javascript
Php.ini代碼 php
方法II: 某個目錄下的 .htaccess java
Php.ini代碼 session
方法III: 再或者在某個一個應用中 app
Php代碼 tcp
使用多個 memcached server 時用逗號","隔開,而且和 Memcache::addServer() 文檔中說明的同樣,能夠帶額外的參數"persistent"、"weight"、"timeout"、"retry_interval" 等等,相似這樣的:"tcp://host1:port1?persistent=1&weight=2,tcp://host2:port2" 。
若是安裝的PECL是memcached(依賴libmemcached庫的那個擴展),則配置應爲 memcached
Php代碼 spa
代碼例子(不依賴libmemcached庫的那個) server
Php代碼 blog
用 sessionid 去 memcached 裏查詢一下:
Php代碼
會看到 string(37) "TEST|i:1177556731;TEST3|i:1177556881;" 這樣的輸出,證實 session 正常工做。