ilyalatt
ilyalatt
v0.5 (a lot of breaking changes) - [x] Fixed Updates and Upload - [x] Simplified union tags - [x] `IReadOnlyList` instead of `Arr` - [x] `T?` instead of `Option` -...
Looks like a new version of Rider tries to run the source generator on the fly. It makes a noticeable load. [An incremental generator](https://andrewlock.net/exploring-dotnet-6-part-9-source-generator-updates-incremental-generators) should be used. A scheme should...
Current middleware just waits a random time on each query except files requests. Here it a better idea. Keep a map of (RequestType, CallInfo). CallInfo represents sliding window of calls...
Currently there are much of allocations. Need to introduce a custom binary reader, which supports forks (creation of a new reader which works with next N bytes without interfering with...
use `ArrayPool` from [this package](https://www.nuget.org/packages/System.Buffers/).