Wallogit.com
2017 © Pedro Peláez
Simple way to manage delayed execution in PHP scripts
Simple way to manage delayed execution in PHP scripts
, (*1)
It can be used to execute delayed tasks - tasks, which takes long time to execute and result of their execution isn't necessary to generate output of requested script.
For example, it can be sending mail, or long database queries, or checking some info (IP whois data), delayed collaborating with remote API., (*2)
Tasks it's a base to build your task-handlers.
Task-handlers it's classes, which will store tasks (when called from script) and execute restored tasks (when called from cron-script).
See example of task-handler in MailDelayed.php, (*3)
To execute tasks, \Tasks\Executor should be called, it's usual work for cron - see tasks_cron.php for example., (*4)
See MailDelayed.php, (*5)
$taskStorage = new MemStorage(new \Jamm\Memory\RedisObject('tasks'));
$mailer = new MailDelayed($taskStorage);
$mailer->Send('to@example.com', 'Re: Hello', 'Hi, To!', 3);
Any object, implements Jamm\Memory\IMemoryStorage. For example, Jamm\Memory\RedisObject, (*6)
No any external classes are required, (*7)