Create tasks on Laravel and Ubuntu server using Screen

76 Views Asked by At

It's possible to add the task from HTTP request with Laravel and processing with ubuntu server using screen session, here some example.

I have a Website with processing feature like decode whole of encoded string and take up to 24hours to process it, but it's impossible to my user waiting until task end, so I want to ask it's possible to submit task from Laravel, and send to my server 'Ubuntu Server' and processing that task on Screen sessions, Save to screen, generate unique id, check progress on screen, and send notification to user email when the task complete?

1

There are 1 best solutions below

0
On

Use queue worker to do your long running tasks, laravel queue and also post any code you have written so that I can help