Advantages of Cache vs Session
One important difference is, that items in the cache can expire (will be removed from cache) after a specified amount of time. Items put into a session will stay there, until the session ends. ASP.NET can also remove items from cache when the amount of available memory gets small. Another difference: the session state can … Read more