Alexey Zimarev
Alexey Zimarev
We can create a generic projector that would load or create the document, and we will keep it. Handlers could update the document content, and we flush it either all...
OpenTelemetry for .NET extensively uses `StringBuilder` that is continuously instantiated and, therefore, allocated and then loads the GC. The object pooling ASP.NET Core extensions allow pooling object instances, in particular,...
**Is your feature request related to a problem? Please describe.** I am using WireMock-Net in [RestSharp](https://github.com/Restsharp/RestSharp/) integrated tests. Most of the tests use callbacks as I need to access the...
As you never know when lambdas will be executed, you can end up the lambda being called on disposed resources. They also add allocations of delegates and closures. Nobody needs...
Every time someone does `var r = r.With(...)` a new instance is creates, which leads to excessive allocations and GC pressure. Therefore, records should be banned and all data structures...
Using `IEnumerable` can cause repeated enumerations, so ban functions returning `IEnumerable`.
**Description:** It might the documentation issue as it's very sparse concerning the cache mode. I have a relatively large repository with one solution, and tens of projects. I enabled restore...
For any successful write, the client keeps producing two log entries: ``` [20:50:58 WRN] gRPC call deadline exceeded. [20:50:58 INF] Call failed with gRPC error status. Status code: 'DeadlineExceeded', Message:...