FusionCache icon indicating copy to clipboard operation
FusionCache copied to clipboard

FusionCache is an easy to use, fast and robust cache with advanced resiliency features and an optional distributed 2nd level.

Results 57 FusionCache issues
Sort by recently updated
recently updated
newest added

The current implementation does not take into account the `AbsolutExpiration` set during the addition of the entry to the IDistributeCache https://github.com/jodydonetti/ZiggyCreatures.FusionCache/blob/f1380b7c562eeb610c58490fd7e7f63bf69e0569/src/ZiggyCreatures.FusionCache/FusionCache_Sync.cs#L145 This may lead to the hidden extension of the...

enhancement

Hi @jodydonetti firstly thanks for your contribution to the community, we have just started to use FusionCache on production and has been working flawesly since then. We are constantly trying...

Is it possible to skip saving data to InMemory and use only 2nd level distributed cache? We have some really heavy distributed cache with more than 5 GB of data...

question

Prometheus docs provide tip how to not use labels: "As a general guideline, try to keep the cardinality of your metrics below 10". With "fusioncache_cache_instance_id" tag this could be problematic...

enhancement

## Problem With the introduction of the [builder](https://github.com/ZiggyCreatures/FusionCache/blob/main/docs/DependencyInjection.md) in [v0.20](https://github.com/ZiggyCreatures/FusionCache/releases/tag/v0.20.0) FusionCache got a nice way to configure the various options and components, in a very flexible way. In one particular...

enhancement

## Problem Not technically a problem per se, but with the release of the new and improved [auto-recovery](https://github.com/ZiggyCreatures/FusionCache/blob/main/docs/AutoRecovery.md) in [v0.24.0](https://github.com/ZiggyCreatures/FusionCache/releases/tag/v0.24.0), I had to add a little bit of reflection usage...

enhancement

I have a multi-layer FusionCache set up (in-memory & Redis). My issue is that objects retrieved from the memory store need to be immutable, so I will likely have to...

I am the author of the AsyncKeyedLock library and I believe that this library would benefit from depending on it. If you're interested, I can make a PR.

enhancement

**Describe the issue** See numbers below. There are other issues like cache line pollution on reads through interlocked applied to a singular location which will ruin the scaling on many-core...

enhancement

**Describe the bug** The doc doesn't mention what is the correct way to call `GetValueAsync(...)` method. https://github.com/ZiggyCreatures/FusionCache/blob/main/docs/CoreMethods.md#getorsetasync I'm not able to figure out what the difference in behaviors is for...