Just giving this a bump to see if anyone has anything to weigh in with regarding Laravel's task scheduler. I know it's not entirely in its infancy, but a lack of documentation regarding some of the more robust features like what I've described above make me wonder if I'm just treading into somewhat uncharted waters. Then again, I'm also a bit new to this stuff so maybe there's just something I'm missing.
Task Scheduling Questions
Hi folks, I've been building a task scheduling suite with 5.4 lately and I'm wondering about some features I'd like to integrate.
1- I'd like the ability to dynamically schedule tasks, as opposed to defining their interval in Kernel.php, probably from a DB somewhere. Has anyone tried this/got any tips for good practices?
2- I want to ensure that for certain tasks, only one possible instance of that task is running, whether that's from the scheduler or the command line. I know I can use withoutOverlapping, I just haven't tested how robust it is.
3- I'd like the ability to list which tasks are currently running and, if necessary, terminate a running task. Aside from killing the actual process (since I'd like to build a GUI for this), has anyone tried anything like this?
I'm curious to hear people's experience with this kind of a project, and if anyone has any tips. Thanks everyone!
Please or to participate in this conversation.