ZstdNet
ZstdNet copied to clipboard
Zstd wrapper for .NET
[TestCase(new byte[0], 0, 0)] [TestCase(new byte[] { 1, 2, 3 }, 1, 2)] [TestCase(new byte[] { 1, 2, 3 }, 0, 2)] [TestCase(new byte[] { 1, 2, 3 }, 1,...
I would like to do some training of dictionaries with datasets that are many gigabytes and consist of sometimes millions of files. I keep them in 7z files and linearly...
There is a new 1.5.0 version of zStandard: https://github.com/facebook/zstd/releases/tag/v1.5.0
Hi, I am trying to use the ZStdNet nuget package but it seems like the assemblies present in the Nuget are Not Strong name signed. Due to this, I can't...
When I used zstdnet in web applications, it throwed System.DllNotFoundException: libzstd. I review ed the loading native DLL's source code(ExternMethods class) , found a bug that set directory dll error...
I compiled sources of ZstdNet for FW 4.8. Plain usage: var compressor = new Compressor(); data = File.ReadAllBytes(f.Filename); ComprData = compressor.Wrap(data); ...and immediately fails: > System.AccessViolationException > HResult=0x80004003 > Message=Attempted...
I've had some issues with decompression a single file, other went fine. My fix was the following: ```csharp using FileStream fileStreamInput = File.OpenRead("TheInputPath"); using FileStream fileStreamOutput = File.OpenWrite("TheOutputPath"); // This...
Hello, thanks for the great library! We wanted to verify we aren't running into any UB here. We are using an ObjectPool of compressors like in this comment https://github.com/skbkontur/ZstdNet/issues/31#issuecomment-2070383296 with...