我在我的ASP.NET MVC應用程序的內存會話中使用,這意味着我只能有一個單一的工作線程正確嗎?這是否意味着我的應用程序中有並行處理(併發請求)?我的應用程序一次只接受1個請求嗎?ASP.NET單工線程? (在內存中)
編輯:根據IIS7網站:
If the application uses in-process session variables,
the application will not function correctly, because the same user requests
are picked up by different worker processes that
do not share the same session details.
因此,這意味着在內存中的會話只能有1個工作者線程或不?另請參閱IIS7論壇中的here。
流程和線程在ASP.NET和IIS的上下文中意味着不同的東西。多個進程意味着你有多個會話存儲。 – 2009-08-24 02:17:00