Cache in Web farms
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
How to maintain cache in webfarms like session(outproc).if it is possible how we configure in web.config file.
The easiest way is to use SQL Server to store the state. This allows access by all machines in the web farm. This is an out-of-the-box option in ASP.NET, allowing you to use the
Session
object normally. See HOW TO: Configure SQL Server to Store ASP.NET Session State[^] for more details. Hope that helps. :) --Jesse