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

Hi to all, it seems that assembly ZiggyCreatures.FusionCache is not strong signed. Is it possibile to strong sign it? Thanks Andrea

My app is hosted on Azure, and I already use **Azure Service Bus** and **Cosmos DB**. Since **Azure Redis** is costly and my app doesn’t require its level of performance,...

Description: I'm encountering an issue where data retrieved from the first level (distributed cache) is correct, but when retrieved from L2, some entries are missing for the same key. This...

## Problem Configuration of options do not follow the standard .Net options pattern Options cannot be set via configuration and have to be 'hard-coded' ``` services.AddFusionCache() .WithOptions(o => { //...

enhancement

## Problem Right now, the only supported way to serialize objects for storage in FusionCache is by converting them into byte arrays using `IFusionCacheSerializer`. This design decision was based on...

## Problem currently we do not use FusionCache, but we use IDistributedCache and created our own L1 cache on top. our IDistributed cache is backed by https://www.nuget.org/packages/NeoSmart.Caching.Sqlite and https://www.nuget.org/packages/Microsoft.Extensions.Caching.StackExchangeRedis. We...

## Problem Some factories take really long time to run. Like fetching all users from a tenant from AzureAD. That's why they need to be cached. GraphAPI provides paginated fetch...