EFSecondLevelCache.Core icon indicating copy to clipboard operation
EFSecondLevelCache.Core copied to clipboard

Announcing a better Second Level Caching Library!

Open VahidN opened this issue 5 years ago • 0 comments

EF Core 3x introduces the interceptors concept. By using them we can watch for the specific queries which are tagged as Cachable (using the standard TagWith method) and then cache their results. This method is a lot faster, doesn't use any Reflection and just uses the standard and public API of EF core and doesn't change the current expression tree. Also it doesn't need any settings for the cache invalidation. Cache invalidation will be performed during the CRUD operations automatically.

You can find this new library here: https://github.com/VahidN/EFCoreSecondLevelCacheInterceptor

VahidN avatar Feb 15 '20 08:02 VahidN