July 20, 2021

You can add it to your project by including it in your mix.exs dependencies: defp deps do [ :ex_gzip, "~> 0.1.0" ] end Use code with caution. Copied to clipboard Once installed, you can perform basic operations: : EXGzip.compress("your data") Decompressing : EXGzip.decompress(compressed_binary)
: Often used to handle large data streams, preventing memory issues by processing data in chunks rather than loading entire files into memory at once. Why Use EXGzip? EXGzip
: Easily compress strings or binaries into Gzip format and decompress Gzip data back into its original form. You can add it to your project by including it in your mix
: It follows standard library guidelines for naming and documentation, ensuring it feels consistent with other packages in the Hex ecosystem . Getting Started : Easily compress strings or binaries into Gzip
: Reduces boilerplate code required to initialize and control zlib streams manually.