CodeIgniter Forums
Jobs/Queues in CI4 - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5)
+--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24)
+--- Thread: Jobs/Queues in CI4 (/showthread.php?tid=81036)



Jobs/Queues in CI4 - vimkaf - 01-17-2022

I'm still new in the world of Async PHP but I find myself needing a jobs queues and dispatcher or worker especially when I'm integrating several APIs in an application.
 I want to know if this is in the works for CI4, is this something we should be expecting or we look for an alternative.


RE: Jobs/Queues in CI4 - datamweb - 02-07-2022

It seems that tasks , this process is being followed, and I hope that this incident will be compensated by it as soon as possible.
Thanks to all the developers.


RE: Jobs/Queues in CI4 - kenjis - 02-07-2022

The tasks is a task scheduler, not queue system.
See https://github.com/codeigniter4/tasks/blob/develop/docs/index.md#codeigniter-task-scheduler


RE: Jobs/Queues in CI4 - rockinmusicgv - 02-07-2022

gearman is a popular job server that supports PHP. It is possible to integrate some gearman routines within your codeigniter project. I think the biggest issue you'll run into is that HTTP is a stateless protocol. Any PHP framework will have that as an issue.