- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
在我阅读有关 .Net 4.5 中的异步编程的过程中 async
和 await
关键词我读了Here以下段落
Processing Asynchronous Requests
In web applications that sees a large number of concurrent requests at start-up or has a bursty load (where concurrency increases suddenly), making these web service calls asynchronous will increase the responsiveness of your application. An asynchronous request takes the same amount of time to process as a synchronous request. For example, if a request makes a web service call that requires two seconds to complete, the request takes two seconds whether it is performed synchronously or asynchronously. However, during an asynchronous call, a thread is not blocked from responding to other requests while it waits for the first request to complete. Therefore, asynchronous requests prevent request queuing and thread pool growth when there are many concurrent requests that invoke long-running operations.
对于粗体字,我无法理解为什么异步请求需要与同步请求相同的时间来处理?
例如:
public async Task MyMethod()
{
Task<int> longRunningTask = LongRunningOperation();
//indeed you can do independent to the int result work here
//and now we call await on the task
int result = await longRunningTask;
//use the result
Console.WriteLine(result);
}
public async Task<int> LongRunningOperation() // assume we return an int from this long running operation
{
await Task.Delay(1000); //1 seconds delay
return 1;
}
我的理解LongRunningOperation()
从这里调用的第一行开始执行 Task<int> longRunningTask = LongRunningOperation();
并在调用 await
后返回值,所以从我的角度来看,异步代码比同步代码快,对吗?
据我所知,主线程正在执行 MyMethod()
未阻塞等待 LongRunningOperation()
待完成但它返回到线程池以服务于另一个请求。那么是否有另一个线程分配给LongRunningOperation();
执行它?
如果是那么异步编程和多线程编程有什么区别?
更新:
假设代码变成这样:
public async Task MyMethod()
{
Task<int> longRunningTask = LongRunningOperation();
//indeed you can do independent to the int result work here
DoIndependentWork();
//and now we call await on the task
int result = await longRunningTask;
//use the result
Console.WriteLine(result);
}
public async Task<int> LongRunningOperation() // assume we return an int from this long running operation
{
DoSomeWorkNeedsExecution();
await Task.Delay(1000); //1 seconds delay
return 1;
}
在这种情况下,将 LongRunningOperation()
在 DoIndependentWork()
期间由另一个线程执行执行?
最佳答案
异步操作并不快。如果您异步(即 await Task.Delay(10000)
)或同步(即 Thread.Sleep(10000)
)等待 10 秒,将花费相同的时间10 秒。唯一的区别是,第一个在等待时不会占用线程,但第二个会占用线程。
现在,如果您启动一个任务并且不等待它立即完成,您可以使用同一个线程来做一些其他工作,但它不会“加速”异步操作的运行:
var task = Task.Delay(10000);
// processing
await task; // will complete only after 10 seconds
关于您的第二个问题:Task.Delay
(与其他真正的异步操作一样)不需要执行线程,因此 there is no thread . Task.Delay
是使用您启动的 System.Threading.Timer
实现的,它会在完成时引发一个事件,同时它不需要线程,因为没有可执行的代码。
因此,当运行 MyMethod
的线程到达 await longRunningTask
时,它会被释放(只要 longRunningTask
尚未完成) .如果它是一个 ThreadPool
线程,它将返回到 ThreadPool
,它可以在您的应用程序中处理一些其他代码。
关于更新的流程是这样的:
MyMethod
开始处理LongRunningOperation
开始处理DoSomeWorkNeedsExecution
在调用线程上执行LongRunningOperation
中到达一个 await
,因此返回一个热任务。DoIndependentWork
由同一个调用线程执行(LongRunningOperation
仍在“运行”,不需要线程)MyMethod
中到达了一个 await
。如果原始任务完成,同一个线程将同步继续,否则将返回一个最终完成的热任务。因此,您使用 async-await
的事实允许您使用一个线程,否则该线程将被阻塞以同步等待执行 CPU 密集型工作。
关于c# - .net 4.5 中异步和同步的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27742698/
我正在实现 IMAP 客户端,但 IMAP 邮箱同步出现问题。 首先,可以从 IMAP 服务器获取新邮件,但我不知道如何从邮箱中查找已删除的邮件。 我是否应该从服务器获取所有消息并将其与本地数据进行比
我研究线程同步。当我有这个例子时: class A { public synchronized void methodA(){ } public synchronized void met
嗨,我做了一个扩展线程的东西,它添加了一个包含 IP 的对象。然后我创建了该线程的两个实例并启动它们。他们使用相同的列表。 我现在想使用 Synchronized 来阻止并发更新问题。但它不起作用,我
我正在尝试使用 FTP 定期将小数据文件从程序上传到服务器。用户从使用 javascript XMLHttpRequest 函数读取数据的网页访问数据。这一切似乎都有效,但我正在努力解决由 FTP 和
我不知道如何同步下一个代码: javascript: (function() { var s2 = document.createElement('script'); s2.src =
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 7 年前。 Improve this qu
一 点睛 1 Message 在基于 Message 的系统中,每一个 Event 也可以被称为 Message,Message 是对 Event 更高一个层级的抽象,每一个 Message 都有一个
一 点睛 1 Message 在基于 Message 的系统中,每一个 Event 也可以被称为 Message,Message 是对 Event 更高一个层级的抽象,每一个 Message 都有一个
目标:我所追求的是每次在数据库中添加某些内容时(在 $.ajax 到 Submit_to_db.php 之后),从数据库获取数据并刷新 main.php(通过 draw_polygon 更明显)。 所
我有一个重复动画,需要与其他一些 transient 动画同步。重复动画是一条在屏幕上移动 4 秒的扫描线。当它经过下面的图像时,这些图像需要“闪烁”。 闪烁的图像可以根据用户的意愿来来去去和移动。它
我有 b 个块,每个块有 t 个线程。 我可以用 __syncthreads() 同步特定块中的线程。例如 __global__ void aFunction() { for(i=0;i #
我正在使用azure表查询来检索分配给用户的所有错误实体。 此外,我更改了实体的属性以声明该实体处于处理模式。 处理完实体后,我将从表中删除该实体。 当我进行并行测试时,可能会发生查询期间,一个实体已
我想知道 SQLite 是如何实现它的。它基于文件锁定吗?当然,并不是每个访问它的用户都锁定了整个数据库;那效率极低。它是基于多个文件还是仅基于一个大文件? 如果有人能够简要概述一下 sqlite 中
我想post到php,当id EmpAgree1时,然后它的post变量EmpAgree=1;当id为EmpAgree2时,则后置变量EmpAgree=2等。但只是读取i的最后一个值,为什么?以及如何
CUBLAS 文档提到我们在读取标量结果之前需要同步: “此外,少数返回标量结果的函数,例如 amax()、amin、asum()、rotg()、rotmg()、dot() 和 nrm2(),通过引用
我知道下面的代码中缺少一些内容,我的问题是关于 RemoteImplementation 中的同步机制。我还了解到该网站和其他网站上有几个关于 RMI 和同步的问题;我在这里寻找明确的确认/矛盾。 我
我不太确定如何解决这个问题......所以我可能需要几次尝试才能正确回答这个问题。我有一个用于缓存方法结果的注释。我的代码目前是一个私有(private)分支,但我正在处理的部分从这里开始: http
我对 Java 非常失望,因为它不允许以下代码尽可能地并发移动。当没有同步时,两个线程会更频繁地切换,但是当尝试访问同步方法时,在第二个线程获得锁之前以及在第一个线程获得锁之前再次花费太长时间(比如
过去几周我一直在研究java多线程。我了解了synchronized,并理解synchronized避免了多个线程同时访问相同的属性。我编写此代码是为了在同一线程中运行两个线程。 val gate =
我有一个关于 Java 同步的简单问题。 请假设以下代码: public class Test { private String address; private int age;
我是一名优秀的程序员,十分优秀!