You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**2025 update - [HybridCache](https://learn.microsoft.com/en-us/aspnet/core/performance/caching/hybrid?view=aspnetcore-9.0) is available and part of the framework now and solves most of the same problems as LazyCache. Consider using it in new projects and migrating old projects to use it as Microsft will likely provide better long term support**
13
+
14
+
11
15
Lazy cache is a simple in-memory caching service. It has a developer friendly
12
16
generics based API, and provides a thread safe cache implementation that
13
17
guarantees to only execute your cachable delegates once (it's lazy!). Under
@@ -93,3 +97,4 @@ If you have code to share you should submit a pull request: fork the repo, then
93
97
LazyCache is narrow in focus and well established so unlikely to accept massive changes out of nowhere but come talk about on GitHub and we can all collaborate on something that works for everyone. It is also quite extensible so you may be able to extend it in your project or add a companion library if necessary.
0 commit comments