I'm having some occasional slow responses by Apache. The fastest are about 30ms but the slow ones are about 530ms. This is a brand new server that isn't live yet, and this is basically the only thing the server is doing. So I'm trying to track down where the slowness is coming from. I don't think the issue is in mod_lsapi, but I'd like to officially rule that out. Is there any logs for mod_lsapi that would show how long it takes to handle a request?
I did track the PHP files processing time from start to finish in the PHP script itself and that is always around 30ms. So it seems like the problem is either in Apache or in the connection between Apache and mod_lsapi. It seems suspicious that the difference is consistently around 500ms. It feels like some sort of cache issue somewhere
I did track the PHP files processing time from start to finish in the PHP script itself and that is always around 30ms. So it seems like the problem is either in Apache or in the connection between Apache and mod_lsapi. It seems suspicious that the difference is consistently around 500ms. It feels like some sort of cache issue somewhere
Comment