I have a webrequest processing real-time calls (needs processing time within 100ms) and certain operations are taking a long time (250ms). I was checking whether it's possible to fire-and-forget a web request while processing the original request? So far, I have gathered:
One can make an async http post in php using: Asynchronous PHP calls?
Apache stops processing as soon as the request connection is closed: http://activelamp.com/blog/development/asynchronous-php-with-message-queues/
Use php threads vs message-queues (similar to #2)
If it is possible, please let me know how and point me to the source.