Blog / 阅读

Thinkphp框架中使用memcache缓存的方法

by admin on 2014-07-12 13:33:51 in ,



Thinkphp的默认缓存方式是以File方式,在/Runtime/Temp 下生成了好多缓存文件。
服务器装了memcached后想给更改成memecache方式
在Conf/config.php 中添加
'DATA_CACHE_TYPE' => 'Memcache', 
'MEMCACHE_HOST'   => 'tcp://127.0.0.1:11211',  
'DATA_CACHE_TIME' => '3600',
下载CacheMemcache.class.php 到你的项目中。
Thinkphp 的 Action调用Memcache方法
import("@.ORG.CacheMemcache");
$cache = Cache::getInstance(); 
$cache->set("uid",'1231');
$cache->get("uid");
$cache->rm("uid");
$cache->clear();


写评论

相关文章

上一篇:php curl选项列表(大全)

下一篇:php中对二维数组某个元素进行排序方法

评论

写评论

* 必填.

分享

栏目

赞助商


热门文章

Tag 云