Rose, Billy wrote: >Would the solution in my last email do what you are looking for? >
My one concern with your solution is that it puts a queue in the httpd child processes. I think that putting a queue in each child is always going to be tricky because you can get things stuck in the queue of one busy child process while other child processes are idle. What I like about designs like leader/follower and prefork is that they share one queue across all child processes (and the queue is maintained by the TCP stack). --Brian