feat: 项目基础框架+配置+Kernel
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
<?php
|
||||
|
||||
|
||||
namespace App\Service;
|
||||
|
||||
|
||||
class RedisService
|
||||
{
|
||||
protected static $redis = [];
|
||||
|
||||
/**
|
||||
* @param int $db
|
||||
* @return \Redis
|
||||
* @throws \Exception
|
||||
* @author
|
||||
*/
|
||||
public static function getInstance($db = 1) {
|
||||
if(!isset(self::$redis[$db])) {
|
||||
self::$redis[$db] = new \Redis();
|
||||
}
|
||||
try{
|
||||
if (!self::$redis[$db]->connect(config('database.redis.default.host')))
|
||||
throw new \Exception("连接缓存服务器失败");
|
||||
|
||||
if (config('database.redis.default.password'))
|
||||
{
|
||||
if (!self::$redis[$db]->auth(config('database.redis.default.password')))
|
||||
throw new \Exception("连接缓存服务器失败-");
|
||||
}
|
||||
|
||||
|
||||
if (!self::$redis[$db]->select($db))
|
||||
throw new \Exception("选择缓存数据库失败,".self::$redis[$db]->getLastError());
|
||||
|
||||
}catch (\Exception $e){
|
||||
unset(self::$redis[$db]);
|
||||
throw new \Exception('redis error',500);
|
||||
}
|
||||
return self::$redis[$db];
|
||||
}
|
||||
|
||||
public function __clone()
|
||||
{
|
||||
die('do not clone me ');
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user