aspnet / AspNetSessionState

ASP.NET Session State (not for ASP.NET Core)
MIT License
55 stars 43 forks source link

New thread-safe Item Collection Fixes #95 #99

Open mellamokb opened 1 year ago

mellamokb commented 1 year ago

Added new ThreadSafeSessionStateItemCollection to replace built-in Microsoft one. This fixes the race condition in the indexers. Also commented out all serialization since this is intended to only be used with the in-memory session, so serialization is not necessary.

mellamokb commented 1 year ago

Fixed #95