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.
:) memcached 对于大访问量的网站是非常必要的。 :D......... 使用帮助不详啊,会的人就贴上点吧。 ding ding ding ding 我的应用环境是多服务器,多组别
1、2两个服务器在app1组
3、4两个服务器在app2组
5、6两个服务器在app3组
在CI2.0下面,有人知道该怎么做吗?
页:
[1]