When does ASP.NET’s Session_End event get raised by the StateServer service?

#1
The event will fire for one of two reasons:
  • A session times out (in accordance with the timeout attribute in the web.config's <sessionState> element).
  • The SOSS service is running low on memory and needs to evict the least recently used sessions. (This will only occur if the lru_threshold setting in the soss_params.txt file is set to a value less than 100.)
 
Top