As titled. Is there an strategy/implementation in Apache to prioritize request's importance to process one request before another.

Example is in the case of PNG-interlace the most significant data (overall image view) are loaded and displayed while the rest is being loaded.

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

httpd does not prioritize requests. Each worker processes a request as they come in. The order they're handled in depends on the underlying thread or process subsystem.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.