This one uses Perl for calling a PHP script to consume Tasks from a worker queue in the background. http://blog.choffmeister.de/?page_id=7
I implemented a few TaskInterface classes to batch/receive large amounts of (slow) work and then process them in the background to send an asynchronous response to the requesting clients later. The initial request is sent an immediate response about the job having been entered in a queue. Later the original requester is sent notification on a callback URL of it's choice.
Achievements
132
Karma
6,908
Total ProTip Views
Charity
Fork and commit to someone's open source project in need
This one uses Perl for calling a PHP script to consume Tasks from a worker queue in the background.
http://blog.choffmeister.de/?page_id=7
I implemented a few
TaskInterface
classes to batch/receive large amounts of (slow) work and then process them in the background to send an asynchronous response to the requesting clients later. The initial request is sent an immediate response about the job having been entered in a queue. Later the original requester is sent notification on a callback URL of it's choice.