What happens to Cache when Application Pool recycles?

后端 未结 2 1586
遇见更好的自我
遇见更好的自我 2020-12-21 05:08

I have web application on IIS6 Win2003. This application connected to w3wp.exe process which reaches 50-70% of CPU after 3-4 minutes it was recycled ( forced one ). I have f

相关标签:
2条回答
  • 2020-12-21 05:26

    you could look at out of process caching, that will survive app-pool restart and could be shared in a multi-node applications,

    Have a look at Velocity (Microsoft AppFabric) or SharedCache (Opensource)

    0 讨论(0)
  • 2020-12-21 05:44

    The Cache is part of the application domain so recycling the Application Pool will invalidate all cache items.

    This will also happen if you modify the web.config file or the bin folder.

    0 讨论(0)
提交回复
热议问题