Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 1.19 KB

README.md

File metadata and controls

17 lines (12 loc) · 1.19 KB

zipred

Build Status GoDoc Go Report Card Codacy Badge

ZIP file operations can get costly, especially for large files. This library allows you to filter and extract an online zip file on the fly.

In contrast to a conventional zip parser, it has the following benefits:

  • There is less latency since data is processed directly from the buffer on the fly.
  • The download can be stopped once the metadata or target file has been found. Hence, less data is transferred.
  • Irrelevant data is directly discarded without memory allocation.

This library gives you an efficient and idiomatic way for indexing zip files on the web.

For examples, check the corresponding folder.