I'm using the Laravel 4.2 Queues service (http://laravel.com/docs/4.2/queues) for handling long-time ops. This helps me to handle the requests to server more quickly.
But how I can handle the next situation?
- The server puts the job to the queue and send a response to the client with accepted status.
- Then the system falls down.
I will lose all the jobs on the queue? Does Laravel Queues handles on its own this situation? How I could do it? How Laravel manage this situation when I make manually an artisan down?
Thanks!