first commit
This commit is contained in:
60
vendor/webman/redis-queue/src/Client.php
vendored
Normal file
60
vendor/webman/redis-queue/src/Client.php
vendored
Normal file
@@ -0,0 +1,60 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is part of webman.
|
||||
*
|
||||
* Licensed under The MIT License
|
||||
* For full copyright and license information, please see the MIT-LICENSE.txt
|
||||
* Redistributions of files must retain the above copyright notice.
|
||||
*
|
||||
* @author walkor<walkor@workerman.net>
|
||||
* @copyright walkor<walkor@workerman.net>
|
||||
* @link http://www.workerman.net/
|
||||
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
||||
*/
|
||||
namespace Webman\RedisQueue;
|
||||
|
||||
use Workerman\RedisQueue\Client as RedisClient;
|
||||
|
||||
/**
|
||||
* Class RedisQueue
|
||||
* @package support
|
||||
*
|
||||
* Strings methods
|
||||
* @method static void send($queue, $data, $delay=0)
|
||||
*/
|
||||
class Client
|
||||
{
|
||||
/**
|
||||
* @var Client[]
|
||||
*/
|
||||
protected static $_connections = null;
|
||||
|
||||
|
||||
/**
|
||||
* @param string $name
|
||||
* @return RedisClient
|
||||
*/
|
||||
public static function connection($name = 'default') {
|
||||
if (!isset(static::$_connections[$name])) {
|
||||
$config = config('redis_queue', config('plugin.webman.redis-queue.redis', []));
|
||||
if (!isset($config[$name])) {
|
||||
throw new \RuntimeException("RedisQueue connection $name not found");
|
||||
}
|
||||
$host = $config[$name]['host'];
|
||||
$options = $config[$name]['options'];
|
||||
$client = new RedisClient($host, $options);
|
||||
static::$_connections[$name] = $client;
|
||||
}
|
||||
return static::$_connections[$name];
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $name
|
||||
* @param $arguments
|
||||
* @return mixed
|
||||
*/
|
||||
public static function __callStatic($name, $arguments)
|
||||
{
|
||||
return static::connection('default')->{$name}(... $arguments);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user