How to return response and continue executing script in laravel without queue
Hi am trying to develop a project in which we get a lot of data from android devices
and i want to return response to device after file upload and then do processing, the processing takes time and the device number are huge hence i want to do it without queueing. So that i can process data quickly.
@ohffs the solution you suggested i already implemented it but the apache instance managing this request will keep running until the execution completed.
I guess separating the job and queuing it is only way is it possible to use multiple queues and use a scheduler to manage them i.e for example having 10 queue which do the same job and when a job come you assign it to queues based on some parameter that defines effective distribution between them.
I guess separating the job and queuing it is only way is it possible to use multiple queues and use a scheduler to manage them i.e for example having 10 queue which do the same job and when a job come you assign it to queues based on some parameter that defines effective distribution between them.
I guess this is handled at the queue manager level (if you want to run jobs in parallel or one after another)