Trying to make Web Method Asynchronous

自作多情 提交于 2019-11-26 04:56:38

问题


The project I am currently working on involves MS SQL Server and ASP.net Web Services that use Session variables. Apparently this causes a client\'s calls to execute in a sequential manner. I want to make sure that these methods execute asynchronously.

After doing some research it appears to me the choicest method is to persist the session state in the database using a table that tracks sessions ( using guids say ) and separate tables for each session.

Before I dive directly into this I need to know if I can gain the same sense of asynchronous operations for the web service if I configure SQL Server to store the session.

Can I ?


回答1:


Sorry to say that, but the only way to execute asynchronously your code and use session variables is to make your totally custom session solution - and I mean totally custom and disable the asp.net session entirely.

Basic tips to make your session:

  1. You have one cookie connected with the users data
  2. The data is on one table on your database.
  3. You make custom fields on that table for each session and avoid Dictionary<> to keep them
  4. You work with Dirty read, last write wins
  5. You read and write only the session variables that you need each time (not all together)
  6. Each line have a time out date, and use like MS, a sheduler on SQL to delete old sessions.
  7. Load session on OnPreInit, save only what have change on OnUnload
  8. By entirely disable the session, you need to lock using Mutex code that now is work fine because the session is make synchronization with out notice it, but with out session lock maybe execute two times, like new inserting to database calls.

relative:

Web app blocked while processing another web app on sharing same session
What perfmon counters are useful for identifying ASP.NET bottlenecks?
Replacing ASP.Net's session entirely

to answer and to this question if I configure SQL Server to store the session ? the session is still lock and block the rest request. If you have the session on SQL server or on other medium is not change the way of working, only the place of the saved data.



来源:https://stackoverflow.com/questions/11325150/trying-to-make-web-method-asynchronous

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!