Mathews Bryan
Mathews Bryan
I followed this guide to try and connect to an Always On availability group listener with no luck. https://learn.microsoft.com/en-us/azure-data-studio/enable-kerberos?tabs=mac I have been able to connect directly to any of the...
  update to ImageSharp 3.x see: https://sixlabors.com/posts/announcing-imagesharp-300/
 
The current implementation of DistributedCacheRateLimitStore uses Newtonsoft.Json for serialization and deserialization: [DistributedCacheRateLimitStore.cs](https://github.com/stefanprodan/AspNetCoreRateLimit/blob/master/src/AspNetCoreRateLimit/Store/DistributedCache/DistributedCacheRateLimitStore.cs) System.Text.Json is faster and more memory-efficient than Newtonsoft.Json and removes reliance on Newtonsoft.Json package, making the project more...
Migrate from Pathoschild.Http.Client.FluentClient to the native .NET HttpClientFactory pattern with resilience policies for .NET 8+ target frameworks Reasons: - HttpClientFactory provides better connection pooling and resource management - Native integration...
Please consider a .NET 10 target and refactor the internal locking to use [`System.Threading.Lock`](https://learn.microsoft.com/en-us/dotnet/api/system.threading.lock?view=net-9.0) primitive for improved performance. Thanks for considering and creating this!