ZlibWithDictionary 2.1.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package ZlibWithDictionary --version 2.1.0
NuGet\Install-Package ZlibWithDictionary -Version 2.1.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ZlibWithDictionary" Version="2.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ZlibWithDictionary --version 2.1.0
#r "nuget: ZlibWithDictionary, 2.1.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install ZlibWithDictionary as a Cake Addin
#addin nuget:?package=ZlibWithDictionary&version=2.1.0

// Install ZlibWithDictionary as a Cake Tool
#tool nuget:?package=ZlibWithDictionary&version=2.1.0

This is a plain wrapper around DotNetZip that allows Deflate compression with preset dictionary.
     This is particularly useful for compressing small byte-sequences (diminishing returns beyond 32k) where the content being compressed follows predictable patterns such a web-service results following a known schema or html documents.
     The best dictionary is one that is contains substrings that are likely to occur in the input - the longer the matching substrings, and the more likely they occur in the input, the better.
     The only two methods provided are DeflateCompression.ZlibCompressWithDictionary and Deflate.ZlibDecompressWithDictionary (intellisense explains the parameters).
     Per the DotNetZip docs, this compression is compatible with the deflate RFC1950 as implemented by the common zlib library (ref: http://zlib.net/).
     (Note that although gzip uses the same algorithm, it uses a slightly different and thus incompatible header.)

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.6.0 749 11/16/2021
2.5.0 7,326 2/12/2021
2.4.0 19,760 9/12/2019
2.3.3 15,738 2/10/2019
2.3.2 626 2/10/2019
2.3.1 1,264 1/3/2019
2.3.0 1,098 12/19/2018
2.2.0 15,771 5/17/2018
2.1.1 19,684 9/5/2016
2.1.0 942 9/5/2016
2.0.0 1,191 6/16/2016
1.0.0 1,182 6/16/2016

Update DotNetZip