Asp.net Caching Handling

I am learning how to handle caching in a .net environment. I know that .NET supports the object of the caching class, and we can always use it, but here the problem that I am facing is different.

When we talk about caching (data caching), we actually cache all the information from the database, but at the same time we want to make sure that we want to use the cached values ​​ONLY IF the database has not changed. Otherwise, we want to read these values ​​from the database.

Is there any infrastructure that I can use? Does it support webfarm?

+4
source share
2 answers

Take a look at this link .... cache management in asp.net and cache handling methods

Hope this helps you .....

amuses ...

+1
source

Source: https://habr.com/ru/post/1380060/


All Articles