Skip to content

Instantly share code, notes, and snippets.

@jamiethorpe
jamiethorpe / gist:cb46360dfdb61b7bed6186d00a9da9e7
Created January 30, 2026 13:05
Laravel - Get count of each job in redis with percentage of queue
use Illuminate\Support\Facades\Redis;
$queueName = "default";
$redisKey = "queues:{$queueName}";
$total = Redis::connection("default")->llen($redisKey);
echo "Total jobs in queue: {$total}\n\n";
$jobs = Redis::connection("default")->lrange($redisKey, 0, -1); // Get ALL jobs
$counts = [];