FusionCache
FusionCache copied to clipboard
FusionCache is an easy to use, fast and robust cache with advanced resiliency features and an optional distributed 2nd level.
## Problem I have a specific use-case where my data API reads and writes to the cache, and a separate events API that _only_ writes to the cache (to be...
Scenario 1: I have a paginated query for a product table. I need to cache the data whenever users switch pages. Each page switch results in caching of data, where...
Currently the Backplane feature is only available for Redis cache. Would it be much work to get the same setup available when using SQL Server as the distributed cache?
## Problem I have a backplane which pushes updates to the cache. I'd like to expire the entire cache (not remove the items) if the backplane connection is severed. ##...
Maybe You will be interested in hosting API Explorer online: https://www.robiniadocs.com/d/ziggycreatures-fusioncache/api/ZiggyCreatures.Caching.Fusion.FusionCache.html This is ready-to-go, so above link can be added to README for other people to see it. Or using...
While writing a plugin for FusionCache, I noticed some things that made it harder than necessary and could be improved. I managed to work arround these limitations, but I want...
## Intro Sometimes while working with DI in .NET we may need to register multiple services of the same type, but configured differently. The classic example is with multiple HTTP...
## What's this .NET Aspire thing? Microsoft is about to release [.NET Aspire](https://learn.microsoft.com/en-us/dotnet/aspire/get-started/aspire-overview), which is _"an opinionated, cloud ready stack for building observable, production ready, distributed applications"_. The project is...
Hi, I'm using the following code as suggested in the documentation, database is Azure SQL, FusionCache configuration provided here: #210 ``` var data = await _cache.GetOrSetAsync("someKey-"+someId, async (cancellationToken) => {...
This is not a bug report. This is more about the complex scenario that not mentioned in documentation about syncing cache. Lets say in AspNet Core API i have the...