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?
source share