This is with Apache 2.2 on Windows XP with mod_isapi (the 416293 update).
The usual way I thought http requests are serviced are as follows:
The server does a listen on a socket to attach it to the port (usually port 80)
The server waits on a select, when the select is satisfied server does an accept on the socket and away we go
When I trace through what apache actually does, when a specific client sends lots of requests, I see just the occasional accept. What am I missing?
Art |