Info
Version: | 1.0.7 |
Author(s): | Ewout van der Linden |
Last Update: | Friday, September 2, 2022 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | https://github.com/IonKiwi/lz4.managed |
NuGet Url: | https://www.nuget.org/packages/IonKiwi.lz4.managed |
Install
Install-Package IonKiwi.lz4.managed
dotnet add package IonKiwi.lz4.managed
paket add IonKiwi.lz4.managed
IonKiwi.lz4.managed Download (Unzip the "nupkg" after downloading)
Dependencies
.NETStandard 2.0
- System.Buffers(>= 4.5.0)
- System.Runtime.CompilerServices.Unsafe(>= 4.6.0)
- System.Runtime.CompilerServices.Unsafe(>= 4.6.0)
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 C sources are translated to C#.
The implementation is compliant with the LZ4 Frame Format (v1.6.2).