Data caching is storing of data in web-server’s (IIS) memory for quick access by requesting browsers. Any information that is expensive to get (in terms of performance) is saved in the data cache. For example, commonly SELECTED database values that do not change often can be stored in data cache. This way instead of making repeated calls to SELECT […]