Zip Compressing ASP.NET Session without changing your code using a Session provider.
Posted by: Al Pascual,
on 28 Oct 2008 |
View original | Bookmarked: 0 time(s)
Scott Hanselman had a post last week to zip your Session state. a great idea I thought to be able to save memory on the computer. Yet I didnt want to change all my source code to use another class to do so, a nightmare to track all the Sessions in every application, or worse when you dont have access to that source code. So last weekend I work on a Session State Provider that allows me to intercept every call to the Session State and compressed when set or unzip when retrieve. The Session State...