Redis.php 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?php
  2. namespace addons\shopro\library;
  3. use addons\shopro\exception\Exception;
  4. class Redis
  5. {
  6. protected $handler = null;
  7. protected $options = [
  8. 'host' => '127.0.0.1',
  9. 'port' => 6379,
  10. 'password' => '',
  11. 'select' => 0,
  12. 'timeout' => 0,
  13. 'expire' => 0,
  14. 'persistent' => false,
  15. 'prefix' => '',
  16. ];
  17. /**
  18. * 构造函数
  19. * @param array $options 缓存参数
  20. * @access public
  21. */
  22. public function __construct($options = [])
  23. {
  24. if (!extension_loaded('redis')) {
  25. throw new \BadFunctionCallException('not support: redis');
  26. }
  27. // 获取 redis 配置
  28. $config = \think\Config::get('redis');
  29. if (empty($config) && empty($options)) {
  30. throw new \Exception('redis connection fail: no redis config');
  31. }
  32. if (!empty($config)) {
  33. $this->options = array_merge($this->options, $config);
  34. }
  35. if (!empty($options)) {
  36. $this->options = array_merge($this->options, $options);
  37. }
  38. $this->handler = new \Redis();
  39. if ($this->options['persistent']) {
  40. $this->handler->pconnect($this->options['host'], $this->options['port'], $this->options['timeout'], 'persistent_id_' . $this->options['select']);
  41. } else {
  42. $this->handler->connect($this->options['host'], $this->options['port'], $this->options['timeout']);
  43. }
  44. if ('' != $this->options['password']) {
  45. $this->handler->auth($this->options['password']);
  46. }
  47. if (0 != $this->options['select']) {
  48. $this->handler->select($this->options['select']);
  49. }
  50. // 赋值全局,避免多次实例化
  51. $GLOBALS['SPREDIS'] = $this->handler;
  52. }
  53. public function getRedis() {
  54. return $this->handler;
  55. }
  56. }