Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在阅读一篇关于 HttpContext 和 CallContext 的文章并查看线程敏捷性。这是什么意思?
这意味着 IIS 可以自由地使用多个线程来处理单个请求,尽管不是并行的。
基本上,IIS 尝试异步执行 I/O 操作,从而在操作期间释放调用线程。该线程返回到池中,同时可用于处理其他请求。
当异步 I/O 操作完成时,可以将控制权返回给最初处理请求的线程以外的线程(因为该线程可能在其他地方忙),因此可以尽快继续处理请求。