Brotli in .NET

Brotli is a compression algorithm that seems to be designed to eventually replace GZip. There are a lot of factors involved, but it seems to compress better than GZip, and is also very fast.

Here and here are some links to direct comparisons.

Compressing and decompressing in .NET is exactly the same as with GZip, just substituting out the classes.

View code on GitHub

Comments

Popular posts from this blog

C# Record Serialization

Add timestamp to photo using ImageMagick

Read/write large blob to SQL Server from C#