thinkphp使用memcached

阅读更多

thinkphp3.2.3

config.php配置如下:

 

//SESSION 使用memcached
    'SESSION_TYPE'          =>  'Memcache',
    //Memcache服务器
    'MEMCACHE_HOST' => '127.0.0.1', //分布式可以用数组
    //Memcache端口
    'MEMCACHE_PORT' => 11211,
    'SESSION_EXPIRE' => 3600*24, //session过期时间(秒)

    //数据缓存使用memcached
    'DATA_CACHE_TYPE'       =>  'Memcache',  // 数据缓存类型,支持:File|Db|Apc|Memcache|Shmop|Sqlite|Xcache|Apachenote|Eaccelerator

 

 

参考文献

TP3.2的Session的分布式Memcache驱动

http://www.thinkphp.cn/extend/540.html

 

你可能感兴趣的:(thinkphp,memcached,php)