用户
 找回密码
 入住 CI 中国社区
搜索
查看: 6103|回复: 5
收起左侧

[库 Library] Cache library with memcache support

[复制链接]
发表于 2009-2-8 16:06:46 | 显示全部楼层 |阅读模式
使用方法
PHP复制代码
 
$this->load->library('cache');
//To use memcache
$this->cache->useMemcache($iptomemcache, $port); /*if you want, you can check to see if the connection even worked, as this will return false if the connection failed.*/
$this->cache->save('testkey', 'testdata', NULL, 3600); /*caches the testdata string for 1 hour. */
echo $this->cache->get('testkey');
//To switch back to file based caching
$this->cache->useFile();
//etc.
 
复制代码

:)

lcache_0.1.zip

2 KB, 下载次数: 85

评分

参与人数 1威望 +5 收起 理由
Hex + 5 原创内容

查看全部评分

发表于 2009-2-8 21:54:57 | 显示全部楼层
memcached 对于大访问量的网站是非常必要的。
发表于 2009-9-22 12:53:42 | 显示全部楼层
.........
发表于 2009-9-29 19:42:48 | 显示全部楼层
使用帮助不详啊,会的人就贴上点吧。
发表于 2011-3-28 10:04:05 | 显示全部楼层
ding ding ding ding
发表于 2011-7-20 21:50:23 | 显示全部楼层
我的应用环境是多服务器,多组别

1、2两个服务器在app1组
3、4两个服务器在app2组
5、6两个服务器在app3组

在CI2.0下面,有人知道该怎么做吗?

本版积分规则