PreviousNext

InMemory Caching in ASP.NET MVC 6

by bill-s, 2016-01-30T09:17:21.000Z

Caching enables you to store data in memory for rapid access. This way, when you access the data again, your applications can fetch data from the cache instead of making round trips to the data source. This improves performance and scalability. Caching also comes in handy when the data source is temporarily unavailable.

Read More