mooseh's avatar

Redis Queue possible extra field?

Hi Everyone

So basically im using a redis queue worker in lumen 5.5 and currently when i list my current queue using the 2 commands there are no timestamps for when the jobs will be executed.

        $delayed = collect(Queue::getRedis()->zrange("queues:{$queue}:delayed" ,0, -1));
        $reserved = collect(Queue::getRedis()->zrange("queues:{$queue}:reserved" ,0, -1));

I want to be able to add a feild execution_timestamp, as you cannot see the job timeout in redis, is this possible?

0 likes
0 replies

Please or to participate in this conversation.