Classic ASP session and Web Garden (multiple workers)

微笑、不失礼 提交于 2019-12-11 03:49:02

问题


We are having issues with IIS6 slowdowns when using more than 1.2GB of RAM in a single worker and would like to use more workers. However looks like ASP sessions are made by worker and when the browser accesses some page through another worker it losts the ASP session.

Do you have some tips on how to solve this problem?

We are considering to use some other way to manage session separately from IIS (not database, maybe memcache?). Do you recomend something?

Note.: The application is full of legacy code and we need to avoid big changes in code.


回答1:


I've had a similar scenario with a legacy app in the past and ended up writing a simple component to serialize the ASP Session object to & from the database.



来源:https://stackoverflow.com/questions/1268102/classic-asp-session-and-web-garden-multiple-workers

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