Archive for the ‘Programming’ Category

.Net Cache API vs Application State

Wednesday, August 27th, 2008

So, you’ve got some data in your application that you need to make available to any future request, but you don’t want to fetch or create it every time. This data is not large, changes rarely and is accessed often.

Do you use the .Net Cache API, or the Application State to store this data?

(more…)