LazyCache icon indicating copy to clipboard operation
LazyCache copied to clipboard

An easy to use thread safe in-memory caching service with a simple developer friendly API for c#

Results 60 LazyCache issues
Sort by recently updated
recently updated
newest added

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...

enhancement
help wanted

[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...

enhancement
help wanted

[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...

enhancement
help wanted

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...

enhancement

[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...

enhancement

[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...

enhancement

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...

bug

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...

enhancement

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...