kissmumu 发表于 2009-2-8 16:06:46

Cache library with memcache support

使用方法

$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.

:)

Hex 发表于 2009-2-8 21:54:57

memcached 对于大访问量的网站是非常必要的。

lxylxy888666 发表于 2009-9-22 12:53:42

:D.........

tmnh168 发表于 2009-9-29 19:42:48

使用帮助不详啊,会的人就贴上点吧。

vsda2008 发表于 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下面,有人知道该怎么做吗?
页: [1]
查看完整版本: Cache library with memcache support