Skip to content
Advertisement

Job processing number in terminal – queue in laravel

What is the number next to time in the terminal if it is for processing amount how can I rest it to start from 0 every time running the command php artisan queue:work it starts to continue from last number stop on it, also it possible to change it to string?

I try to this command to clear caches php artisan optimize:clear but nothing cahnge

enter image description here

Advertisement

Answer

As @aynber say it is job IDs, it is autoincrement in the job table, So I rest it by truncating the table after make sure no data in the table

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement