当我在一个线程中下载文件时,需要0.1秒。但是当我在100个线程中下载相同的文件时 - 每次下载需要10秒钟。源代码:
private static int _threadsCount;
private static string _url;
private static void Main(string[] args)
{
_url = ConfigurationManager.AppSettings["Url"];
int threadsLimit = 1;
if (0 != args.Length)
threadsLimit = int.Parse(args[0]);
for (int i = 0; i < threadsLimit; i++)
{
var thread = new Thread(Start);
thread.Start();
}
while (_threadsCount < threadsLimit)
{
Thread.Sleep(1000);
}
Console.WriteLine("Done");
}
static void Start()
{
var webClient = new WebClient();
var stopwatch = new Stopwatch();
stopwatch.Reset();
stopwatch.Start();
for (int i = 1; i <= 10; i++)
{
webClient.DownloadData(_url);
}
stopwatch.Stop();
Console.WriteLine(stopwatch.ElapsedMilliseconds);
Interlocked.Increment(ref _threadsCount);
}
因此,如果我运行一个包含100个线程的程序,则每个文件的速度为10秒。但是如果我用1个线程同时运行的第二个程序,每个文件的速度为0.1秒。所以,问题不在于网速。
为什么下载速度随着线程数量的增加而下降,但它不会影响其他进程(同一个文件)?如何在一个过程中提高速度?
答案 0 :(得分:1)
1)您可以在配置文件中调整此参数(默认值为2):
<system.net>
<connectionManagement>
<add address="*" maxconnection="2" />
</connectionManagement>
</system.net>
2)为了强制您的程序创建多个套接字,请从不同的应用程序域下载。
答案 1 :(得分:0)