Jody Donetti
Jody Donetti
Caching/FusionCache - [https://github.com/ZiggyCreatures/FusionCache](https://github.com/ZiggyCreatures/FusionCache) FusionCache is an easy to use, fast and robust hybrid cache with advanced resiliency features.
# Types of Changes ## Prerequisites Please make sure you can check the following two boxes: - [x] I have read the **CONTRIBUTING** document - [x] My code follows the...
Hi, i'm using PetaPoco v4.0.3 and doing this: ``` c# db.SkipTake(10, 20, PetaPoco.Sql) ``` where the PetaPoco.Sql variable contains the following SQL code, generated using the helper methods: ``` sql...
## 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...
## 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...
Hi all, are you planning on creating an `IDistributedCache` implementation anytime soon? Since Garnet has been announced as being protocol-compatible with Redis I thought it would've worked right away by...
## 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...
## The Problem When using EF Core with ASP.NET the typical way is to get a `DbContext` via DI, and this means inherently with a scoped lifetime: this, in turn,...