|
@@ -73,27 +73,4 @@ class Common
|
|
|
]);
|
|
|
$this->moduleInit($request);
|
|
|
}
|
|
|
-
|
|
|
- static public function getRedis($params)
|
|
|
- {
|
|
|
- $options = [
|
|
|
- 'host' => '127.0.0.1',
|
|
|
- 'port' => 6379,
|
|
|
- 'password' => 'Z159357p',
|
|
|
- 'select' => 1,
|
|
|
- 'timeout' => 0,
|
|
|
- 'expire' => 0,
|
|
|
- 'persistent' => true,
|
|
|
- 'prefix' => '',
|
|
|
- ];
|
|
|
-
|
|
|
- if (!extension_loaded('redis')) {
|
|
|
- throw new \BadFunctionCallException('not support: redis');
|
|
|
- }
|
|
|
-
|
|
|
- if (!empty($params)) {
|
|
|
- $options = array_merge($options, $params);
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
}
|