My ASP.NET site is running slow, and I decided to troubleshoot it to figure out what to tackle first.
I've used Fiddler2 to see where the bottleneck is, the results DO NOT MAKE ANY SENSE!!!
Please see below and let me know what am I doing wrong?
When I request an image from my local server, I get the following from Fiddler:
ServerGotRequest: 17:30:05.963
ServerBeginResponse: 17:30:06.042
When I request that same image from a client (different network, many miles apart), I get the following from Fiddler:
ServerGotRequest: 14:29:05.723
ServerBeginResponse: 14:29:06.383
That's a HUGE difference, and according to Fiddler's site,
Can i find out how long the server needs to process my request ?
(ServerBeginResponse - ServerGotRequest) is probably what you want.
THIS DOES NOT MAKE ANY SENSE TO ME.
Why would it take THE SERVER any more time to process the remote request over the local one? This timeframe does not include any network traffic from what I can tell from Fiddler's site. Any ideas?