laravel horizon

This commit is contained in:
2019-05-14 04:39:55 +00:00
parent b20bde1f56
commit 34e42d3846
464 changed files with 57914 additions and 69 deletions

View File

@@ -0,0 +1,88 @@
<?php
namespace Laravel\Horizon;
use Laravel\Horizon\Contracts\HorizonCommandQueue;
use Illuminate\Contracts\Redis\Factory as RedisFactory;
class RedisHorizonCommandQueue implements HorizonCommandQueue
{
/**
* The Redis connection instance.
*
* @var \Illuminate\Contracts\Redis\Factory
*/
public $redis;
/**
* Create a new command queue instance.
*
* @param \Illuminate\Contracts\Redis\Factory $redis
* @return void
*/
public function __construct(RedisFactory $redis)
{
$this->redis = $redis;
}
/**
* Push a command onto a given queue.
*
* @param string $name
* @param string $command
* @param array $options
*/
public function push($name, $command, array $options = [])
{
$this->connection()->rpush('commands:'.$name, json_encode([
'command' => $command,
'options' => $options,
]));
}
/**
* Get the pending commands for a given queue name.
*
* @param string $name
* @return array
*/
public function pending($name)
{
$length = $this->connection()->llen('commands:'.$name);
if ($length < 1) {
return [];
}
$results = $this->connection()->pipeline(function ($pipe) use ($name, $length) {
$pipe->lrange('commands:'.$name, 0, $length - 1);
$pipe->ltrim('commands:'.$name, $length, -1);
});
return collect($results[0])->map(function ($result) {
return (object) json_decode($result, true);
})->all();
}
/**
* Flush the command queue for a given queue name.
*
* @param string $name
* @return void
*/
public function flush($name)
{
$this->connection()->del('commands:'.$name);
}
/**
* Get the Redis connection instance.
*
* @return \Illuminate\Redis\Connections\Connection
*/
protected function connection()
{
return $this->redis->connection('horizon');
}
}