Request Laravel Queue Size

I plan to use Laravel Queue, and now I am doing some research:

Can I get the size of a Laravel queue? Even better, can I get Laravel's queue statistics?

+4
source share
1 answer
Queue::size($queue);

the size method will return the size of the given queue. Queue::size()will return the default queue size.

If you use redis, you can use Laravel Horizon to get a more detailed view of what is happening in your queues.

+2
source

Source: https://habr.com/ru/post/1692494/


All Articles