|
|
|
|
|
by usernam3
3358 days ago
|
|
For php laravel projects are using this service: - https://github.com/cronboy/cronboy - https://cronboy.com/ It doesn't fit needs of @pmchorus company, but is useful for simpler cases when you need something more efficient than cron and more accurate than queue delayed jobs. (Example: we use it for sending triggered email deliveries, where batch processing of letters using cron is not possible, because of amount of letters and cron schedule limit) The idea is that you schedule job on specified time and cronboy invokes it via http and execute it on your server. Features: - Seconds accuracy of execution - Statistics on invoked jobs - Secure execution of your code - Retrying if job failed - Laravel friendly facade api |
|