2017-11-28
1.0.1
Danny Prager
All
.NET
Components, Libraries, Applications, Developer Tools
[Overview]
Caching enables you to store data in memory for rapid access. Applications can access the cache and not have to retrieve the data from the original source whenever the data is accessed. This avoids repeated queries for data, and it can improve performance and scalability. In addition, caching makes data available when the data source is temporarily unavailable.
[Detail]
Caching enables you to store data in memory for rapid access. Applications can access the cache and not have to retrieve the data from the original source whenever the data is accessed. This avoids repeated queries for data, and it can improve performance and scalability. In addition, caching makes data available when the data source is temporarily unavailable.
Yopu can use it to store data in the RAM Memory of the server. This enables you to prevent doing unnescecary querys to your database when the data stores has no businessvalue. For instance I'm using it for a Watchdag application that sets a datetime in memory. When the datetime is more then an hour ago logic is run to send messages that something is wrong.