Dmitriy Titarenko

Results 11 comments of Dmitriy Titarenko

https://github.com/skbkontur/ZstdNet/commit/c33750077ed465bce669c4a5a6e1c7f0de1e67ce

Isn't it inconsistent that with the position of the legend on the right, the legend seems to be taken into account? ```js var chart = bb.generate({ padding: {right: 1}, legend:...

This seems a little counterintuitive to me. Don't really understand the connection between displaying an axis and including a legend in the calculation from the point of view of a...

@joelverhagen Also some clients successfully parse the non-compliant ETag from the response and cache the content, but send If-None-Match header WITH quotes on request. In such case api.nuget.org sends 200...

@LexaGV Could you please provide a more complete minimal example that reproduces the problem? Is the problem still reproducible with the version from the NuGet? Is the problem still reproducible...

Instances of the `Compressor` class are not thread safe (as [stated](https://github.com/skbkontur/ZstdNet?tab=readme-ov-file#compressor-class) in the readme). If you want to optimize bulk processing performance you can use for example * Single `Compressor`...

Adding another simplified API is a possible option. But it will not be as efficient because it will require [create/free](https://github.com/facebook/zstd/blob/ff7a151f2e6c009b657d9f798c2d9962b0e3feb5/lib/compress/zstd_compress.c#L5378) an unmanaged context on each wrap. Instances of the `Compressor`...

You can reuse a context (i.e. Compressor/Decomressor instance) with a dictionary as well as context without a dictionary, while respecting the condition that only one thread accesses one context at...