G
Guest
I have a windows service which downloads .html pages by generating URLs and
passing them to HttpWebRequest variable and after that calling the
GetResponse() method. The requests are processed in a for cycle.
Assuming the time for write operations on my Harddisk is negligible am I
using the whole capacity of my internet connection, or is there a way to
improve the speed of successive download ? So far, on my computer the service
seems to use the whole capacity(around 24 KB/s), but when I start it on other
machines (with 2MB/s connection) the results are much better when there are
two(strangely not three or more) threads or services generating the requests.
Thanks in advance
Yavor Stoev
passing them to HttpWebRequest variable and after that calling the
GetResponse() method. The requests are processed in a for cycle.
Assuming the time for write operations on my Harddisk is negligible am I
using the whole capacity of my internet connection, or is there a way to
improve the speed of successive download ? So far, on my computer the service
seems to use the whole capacity(around 24 KB/s), but when I start it on other
machines (with 2MB/s connection) the results are much better when there are
two(strangely not three or more) threads or services generating the requests.
Thanks in advance
Yavor Stoev