c5racing
c5racing
While using the progressbar per the example implementaion, we seeing Redis errors: ``` public void TaskMethod(PerformContext context) { var bar = context.WriteProgressBar(); foreach (var item in collection.WithProgress(bar)) { // do...
I installed the Console package, Install-Package Hangfire.Console, and am able to configure it, config.UseConsole(); however, when use: context.WriteLine("Test Console"); I'm getting this error. I'm passing in the context (PerformContext context)...
I'm looking for an EF Caching solution to use in our solution. We have a multi-tenant platform so I'd like to prefix our cache key with a tenant key. Does...
We currently use google wrappers for nullable wrappers from google/protobuf/wrappers.proto in our proto3 files such as StringValue. In the generated typescript, i need to use .value for these to be...
We currently use google wrappers for nullable wrappers from google/protobuf/wrappers.proto in our proto3 files such as StringValue. In the generated typescript, i need to use .value for these to be...
Is there any capability to do an If... Or... such as: Hello {{#if {{Man}} || {{Boy}}Mr.{{#else}}Mrs.{{/if}} Smith!
Thanks for the great library. On the previous version, we could use: BigInt.FromHex(track).GetBytes(); on version 2, it looks like it's changed to: track.HexToBigInteger().GetBytes(); Can you confirm this is the intended...
## Description I'm trying to replace the Newtonsoft Serializer with the new MemoryPacker to compare performance. When adding MemoryPacker, with Redis, I get an error any time trying to DI...
Prior to .NET8, we decorated our entity property with [Column(TypeName = "jsonb")], which has not been deprecated for .NET's .ToJson() method. We use all snake case tables and columns and...
All of our microservices are GRPC. I'm interested in using DTM from my aggregator to call multiple GRPC services and if one fails, use DTM to call the compensating transaction....