我应该使用异步任务处理大量的并发操作?
Should I use async or Task to handle a lot of concurrent operations?
如果您有很多短期的异步任务,可以考虑使用它。
Consider using it if you have a bunch of short asynchronous tasks.
每一个复杂任务都是异步执行的,它们都会使用同步策略来调用数据聚集任务。
Each orchestration task is invoked asynchronously and each of them calls data aggregation tasks using synchronous strategy.
应用推荐