Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2105447
  • 博文数量: 194
  • 博客积分: 6450
  • 博客等级: 准将
  • 技术积分: 2085
  • 用 户 组: 普通用户
  • 注册时间: 2005-06-06 13:39
文章分类

全部博文(194)

文章存档

2013年(38)

2012年(11)

2011年(1)

2010年(1)

2009年(4)

2008年(13)

2007年(18)

2006年(63)

2005年(45)

我的朋友

分类: 系统运维

2012-07-26 09:09:56

  在Zend Framework中使用Redis做数据缓存,可极大的提高系统的响应速度,示范代码:


点击(此处)折叠或打开

  1.         $config = Zend_Registry::get('config');
  2.         $host = $config->setting->redis->host;
  3.         $port = $config->setting->redis->port;
  4.         $redis = new Redis();
  5. $redis->connect($host, $port) or die("connect to redis error\n");
  6.        $redis->auth($config->setting->redis->password) or die("auth failed\n");
  7.        $redis->setOption(Redis::OPT_SERIALIZER, Redis::SERIALIZER_PHP);


       
阅读(3804) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~