There are two main types of requests arrive at web server ,first is static request that needs HTML page and second is dynamic e.g. a JSP page. A thread pool based web server assigns requests to the worker threads that are waiting in the pool to do some job. Does static and dynamic requests are both assign to the worker threads in the same thread pool or there are separate thread pools for both types of requests? How this scenario is handled in Apache?