PHP使用redis需要封装一个类吗?

1.首先想问一下一台redis服务器上有不同的项目,需要给redis的key加项目的前缀吗?还是用select不同数据库就好了?有12个可选
2.之前使用redis也只是简单封装了一下而已,就直接调用原生的redis接口,这样足够了吗?
$func=$options['persistent']?'pconnect':'connect';
$this->handler=new\Redis;
$options['timeout']===false?
$this->handler->$func($options['host'],$options['port']):
$this->handler->$func($options['host'],$options['port'],$options['timeout']);
$options['auth']===false?
'':
$this->handler->auth($options['auth']);
$this->handler->select($options['select']);
return$this->handler;
繁星淼淼
浏览 291回答 2
2回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript