I have a need to retrieve a page from each of a number of websites and record the response time of that request (time from request to a completely downloaded response) from inside an ASP.NET application.

At the moment, this list consists of a little over 100 URLs all on different domains (but I'd like a scalable solution which could deal with many more).

I have written some code which creates an HttpWebRequest and calls BeginGetResponse in a loop, using System.Diagnostics.Stopwatch to record the time each call is made.

I then record the completion time in the callback function once the entire content has been downloaded.

However, when I run the code, the total time for each request steadily increases - taking up to around 15 seconds by the time we get to the last request.

If I introduce a delay of, for example, 1 second in the loop where I kick-off the requests, I get much more realistic response times throughout the entire job (a few hundred milliseconds).

I'm guessing there is some sort of internal queueing going on 'behind the scenes' such that the requests aren't being made immediately. I clearly don't want to just introduce an arbitrary delay in the code, so I could do with some help understanding what's going on.

Should I be doing something on a number of different threads? Should I be throttling my requests? If so, what metric should I monitor to decide whether or not to start more requests?

UPDATE:

During further research, it looks like my issue may be something to do with 'IO Completion Ports', but I'm still not certain. Ultimately, I don't really care whether things are being queued, I just need some way of timing the round-trip of the request.

Thanks, - Chris

link|improve this question

57% accept rate
Did you look at this? stackoverflow.com/questions/388908/… – dillenmeister Feb 6 at 14:36
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.