Reputation: 559
We are thinking for moving our sessions from memory to sql server (using web.config session mode setting).
Will it work the same way as it does with in memory or our users will be able to retain their session even if the application recycles? What about cache?
Upvotes: 1
Views: 226
Reputation: 6123
Session State Service or Sql Server mode retains session values if the web application restarts. Cache will be removed if the web application restarts.
Upvotes: 5