isa-l VS indexed_gzip

Compare isa-l vs indexed_gzip and see what are their differences.

isa-l

Intelligent Storage Acceleration Library (by intel)

indexed_gzip

Fast random access of gzip files in Python (by pauldmccarthy)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
isa-l indexed_gzip
5 2
904 92
2.8% -
8.6 8.3
29 days ago 6 months ago
C C
GNU General Public License v3.0 or later GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

isa-l

Posts with mentions or reviews of isa-l. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-08-16.

indexed_gzip

Posts with mentions or reviews of indexed_gzip. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-10-10.
  • How Much Faster Is Making a Tar Archive Without Gzip?
    8 projects | news.ycombinator.com | 10 Oct 2022
    Pragzip actually decompress in parallel and also access at random. I did a Show HN here: https://news.ycombinator.com/item?id=32366959

    indexed_gzip https://github.com/pauldmccarthy/indexed_gzip can also do random access but is not parallel.

    Both have to do a linear scan first though. The implementations however can do the linear scan on-demand, i.e., they scan only as far as needed.

    bzip2 works very well with this approach. xz only works with this approach when compressed with multiple blocks. Similar is true for zstd.

    For zstd, there also exists a seekable variant, which stores the block index at the end as metadata to avoid the linear scan. indexed_zstd offers random access to those files https://github.com/martinellimarco/indexed_zstd

    I wrote pragzip and also combined all of the other random access compression backends in ratarmount to offer random access to TAR files that is magnitudes faster than archivemount: https://github.com/mxmlnkn/ratarmount

  • Is there any windows archival software (free or paid) that can browse tar.gz files without extracting the whole tarball?
    2 projects | /r/DataHoarder | 10 Dec 2021
    The pieces are there. https://github.com/devsnd/tarindexer/blob/master/tarindexer.py is a prototype of indexing and seeking a tar file in python. https://github.com/pauldmccarthy/indexed_gzip allows indexing and seeking a gzip file. If those pieces of code were combined it could give you efficient targeted file extraction, but you'd need to find a coder with enough time and motivation to fuss with it.

What are some alternatives?

When comparing isa-l and indexed_gzip you can also consider the following projects:

solaris-userland - Open Source software in Solaris using gmake based build system to drive building various software components.

tarindexer - python module for indexing tar files for fast access

pigz - A parallel implementation of gzip for modern multi-processor, multi-core machines.

zstd - Zstandard - Fast real-time compression algorithm

DirectStorage - DirectStorage for Windows is an API that allows game developers to unlock the full potential of high speed NVMe drives for loading game assets.

rapidgzip - Gzip Decompression and Random Access for Modern Multi-Core Machines

QATzip - Compression Library accelerated by IntelĀ® QuickAssist Technology

libslz - Stateless, zlib-compatible, and very fast compression library -- http://libslz.org

lib842

indexed_zstd - A bridge for libzstd-seek to python. Based on mxmlnkn/indexed_bzip2

ratarmount - Access large archives as a filesystem efficiently, e.g., TAR, RAR, ZIP, GZ, BZ2, XZ, ZSTD archives