Info
Version: | 1.0.16 |
Author(s): | Ewout van der Linden |
Last Update: | Saturday, January 9, 2021 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | https://github.com/IonKiwi/lz4.net |
NuGet Url: | https://www.nuget.org/packages/IonKiwi.lz4.net |
Install
Install-Package IonKiwi.lz4.net
dotnet add package IonKiwi.lz4.net
paket add IonKiwi.lz4.net
IonKiwi.lz4.net Download (Unzip the "nupkg" after downloading)
Dependencies
1 package depend on this package.
Tags
LZ4 has been written by Yann Collet and the original sources can be found on https://github.com/lz4/lz4
LZ4 is a very fast lossless compression algorithm, providing compression speed at 400 MB/s per core, with near-linear scalability for multi-threaded applications.
It also features an extremely fast decoder, with speed in multiple GB/s per core, typically reaching RAM speed limits on multi-core systems.
The original sources are recompiled for .NET (VC++ /clr:pure).
The stream implementation is compliant with the LZ4 Frame Format (v1.6.1).
(.NET 3.5 / 4.0 / 4.5 / 4.7)
lz4.x86.dll - lz4 x86 version
lz4.x64.dll - lz4 x64 version
lz4.AnyCPU.loader.dll - Any CPU / MSIL wrapper, automatically loads x86 or x64 dll
NOTE:
the .NET 3.5 version requires the Microsoft Visual C++ 2008 runtime (x86/x64)
the .NET 4.0/4.5/4.7 version requires the Microsoft Visual C++ 2019 runtime (x86/x64).