Intro to In-Memory Caching in C#



Application performance is important. Just because your application works in development does not mean it will work well once hundreds of people start using it. One key area to look at is data access. Talking to your database can be expensive, especially when the data might not change that often. That’s where caching comes in. We can cache that data in a number of ways so that we do not need to keep going back to the database for it. In this video, we are going to look at one of the simplest caching mechanisms in .NET, called In-Memory caching. We will create an application without caching, observe the performance, and then see how caching can improve our performance. We will also discuss the best practices when using in-memory caching.

Full Training Courses: https://IAmTimCorey.com
Source Code: https://leadmagnets.app/?Resource=IntroToInMemoryCaching
Patreon: https://www.patreon.com/IAmTimCorey
Mailing List: https://signup.iamtimcorey.com/

Comments are closed.