I am not quite sure how to correctly formulate this question, so I will start with the script that I came across.
I have a bit of processing in my web application that takes longer than I would like the user to wait to control the page again, so I decided to process it with an ajax request.
The problem is that even if I unloaded this request into an ajax request, it seems that apache will not process further requests until the full request of the original processor has been completed.
I initially wanted to know how I could get around this problem, but since then I decided that this might be a bad idea in general.
However, I'm still wondering if anyone knows why apache behaves this way and what (if any) the configuration directive controls it. My initial thought was KeepAlive, but disabling didn't seem to change the behavior.
I run php through mod_php if that matters.
I appreciate any help that will be sent in the right direction!
Ben mason
source share