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 59 LazyCache issues
Sort by recently updated
recently updated
newest added

For issue #171 Exposes Compact as found in MemoryCache. Other providers would have to implement or expose their own as ICacheProvider was changed. From code comments in MemoryCache: ``` ///...

Changes related with https://github.com/alastairtree/LazyCache/issues/176 - Change TryGetValue to extract value from lazy and return correct value

[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.] Currently I'm using LazyCache...

enhancement

I expect CachingService.TryGetValue to return the value that I stored in the cache, but instead, it returns the Lazy that was used to generate the value. I would expect a...

bug
help wanted

Hi guys, Does anyone know if currently this library can allow multiple threads to keep read data from cache, while some other threads update cache existing key with new value...

question

**Describe the bug** My goal here is to cache some long running process data and then upon expiration, i will get those data that going to expired and append new...

bug

Hello. To continue closed #95 issue. Your point that one can manually call Remove/Add is wrong. The whole point of this library is to provide **thread-safe** and **atomic** way to...

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.] Problem: To remove expired...

enhancement

**Describe the bug** Absolute expiration seems to not work. In unit tests (C#, Windows) it's ok but after deploying on Linux server, each time function to load data is called....

bug

[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.] Firstly, actively using your...

enhancement