LazyCache
LazyCache copied to clipboard
An easy to use thread safe in-memory caching service with a simple developer friendly API for c#
I looked for Set method in IAppCache , and only when looked in implementation, realized that Add is actually Set. It will be good to add explicit Set or AddOrSet...
[Use the Thumbs Up reaction to vote for this feature, and please avoid adding comments like "+1" as they create noise for others watching the issue.] The unit tests in...
[Use the Thumbs Up reaction to vote for this feature, and please avoid adding comments like "+1" as they create noise for others watching the issue.] LazyCache currently uses statics...
Similar question to #66 cache.Remove("all-products"); When I am trying to remove a bunch of keys from the class, it is difficult to search all keys Is it possible to implement...
[Use the Thumbs Up reaction to vote for this feature, and please avoid adding comments like "+1" as they create noise for others watching the issue.] **Is your feature request...
[Use the Thumbs Up reaction to vote for this feature, and please avoid adding comments like "+1" as they create noise for others watching the issue.] **Is your feature request...
Trying to write a Redis provider for the current version of LazyCache. Ended up hitting a wall with the current implementation. **The bug** When calling _cache.GetOrAddAsync() the caching service calls...
Could you add an example to the (Quick Start) documentation on "how to configure LazyCache options" in the DI container scenario? Is this the correct way? ``` public SomeClass(IAppCache cache)...
`Lazy` has 3 modes of operation, but it is missing the mode that would be most useful in LazyCache, namely supporting multi-threading and not caching exceptions. Since that mode is...
Hi @alastairtree Tnx for a great library. Really enjoy working with it and it has saved me a lot of time and effort. Would you be so kind as to...