-
C#中的异步多线程1 同步和异步对比
namespace SyncSample { class MyDownloadString { Stopwatch sw = new Stopwatch(); public void DoRun() { const int LargeNumber = 6000000; sw.Start(); //网络任务 int t1 = CountCharacters(1, "https://www.baidu.com"); int t2 = CountCharacters(2, "https://www.sogou.com/"); //本机任务 CountToALargeNumber(1, LargeNumber); CountToALargeNumber(2, LargeNumber); CountToALargeNumber(3, LargeNumber); CountToALargeNumber(4, LargeNumber); Console.WriteLine("Chars in Baidu:{0}", t1); Console.WriteLine("Chars in Sougou:{0}", t2); } private int CountCharacters(int id, string url) { WebClient wc1 = new WebClient(); Console.WriteLine("Starting call {0}:{1,4:N0} ms", id, sw.Elapsed.TotalMilliseconds); string result = wc1.DownloadString(new Uri(url)); Console.WriteLine("call {0} completed:{1,4:N0} ms", id, sw.Elapsed.TotalMilliseconds); return result.Length; } private void CountToALargeNumber(int id, int value) { for (long i = 0; i < value; i++) ; Console.WriteLine("End counting {0}:{1,4:N0} ms", id, sw.Elapsed.TotalMilliseconds); } } class Program { static void Main(string[] args) { MyDownloadString ds = new MyDownloadString(); ds.DoRun(); Console.ReadLine(); //同步时,会按照如下顺序执行 t1-t2-count1-count2-count3-count4,最耗时的任务发生在等待网站数据(starting call-call completed)的过程 //但如果能够在等待的过程中就执行count1-4就会极大节省时间 } } }
耗时为:
Starting call 1: 0 ms
call 1 completed: 222 ms
Starting call 2: 222 ms
call 2 completed: 435 ms
End counting 1: 448 ms
End counting 2: 460 ms
End counting 3: 473 ms
End counting 4: 486 ms
Chars in Baidu:14462
Chars in Sougou:19466
对应异步示例:
class MyDownLoadString { Stopwatch sw = new Stopwatch(); public void DoRun() { const int LargeNumber = 600000; sw.Start(); Task<int> t1 = CountCharactersAsync(1, "https://www.baidu.com"); Task<int> t2 = CountCharactersAsync(2, "http://www.sougou.com"); CountToALargeNumber(1, LargeNumber); CountToALargeNumber(2, LargeNumber); CountToALargeNumber(3, LargeNumber); CountToALargeNumber(4, LargeNumber); Console.WriteLine("Chars in Baidu:{0}", t1.Result); Console.WriteLine("Chars in Sougou:{0}", t2.Result); } private async Task<int> CountCharactersAsync(int id, string site) { WebClient wc = new WebClient(); Console.WriteLine("Starting call {0}:{1,4:N0} ms", id, sw.Elapsed.TotalMilliseconds); string result = await wc.DownloadStringTaskAsync(new Uri(site)); Console.WriteLine("Call {0} completed:{1,4:N0} ms", id, sw.Elapsed.TotalMilliseconds); return result.Length; } private void CountToALargeNumber(int id,int value) { for (long i = 0; i < value; i++) ; Console.WriteLine("End counting {0}:{1,4:N0} ms", id, sw.Elapsed.TotalMilliseconds); } } class Program { static void Main(string[] args) { MyDownLoadString ds = new MyDownLoadString(); ds.DoRun(); Console.ReadLine(); //对于耗时的网络任务,修改成了异步执行的方式,于是任务执行演变成了t1 start,t2 start-count1-4-t1 completed/t2 completed //在等待网络任务的同时,完成了本机任务 //而这些任务,都是在主线程完成,并没有创建其他线程 } }
耗时为:
Starting call 1: 1 ms
Starting call 2: 58 ms
End counting 1: 62 ms
End counting 2: 63 ms
End counting 3: 64 ms
End counting 4: 65 ms
Call 2 completed: 199 ms
Call 1 completed: 243 ms
Chars in Baidu:14462
Chars in Sougou:16597
可见有效的压缩了时间,这是因为4次CountToALargeNumber都是在等待网站响应的过程中完成的,而这些工作都是在主线程完成的,并没有创建额外的线程。
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式