|
4 | 4 | <meta charset="UTF-8"> |
5 | 5 | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
6 | 6 | <title>ARCX - Fast Compressed Archives with Selective Access</title> |
7 | | -<meta name="description" content="ARCX is a compressed archive format with indexed, block-level access. Retrieve any file from a 10,000-file archive in 7 milliseconds."> |
| 7 | +<meta name="description" content="ARCX is a compressed archive format with indexed, block-level access. Extract 1 file from a 5GB archive in 7ms. 811x faster than tar.gz. Works with S3 and HTTPS."> |
8 | 8 | <style> |
9 | 9 | *, *::before, *::after { |
10 | 10 | box-sizing: border-box; |
|
535 | 535 | <!-- HERO --> |
536 | 536 | <section class="hero"> |
537 | 537 | <div class="container"> |
538 | | - <h1>Retrieve a file from a 10,000-file archive in 7 milliseconds.</h1> |
539 | | - <p class="subline">Fast to create. Fast to query. No full archive decompression required.</p> |
| 538 | + <h1>Extract 1 file from a 5 GB archive in 7 milliseconds.</h1> |
| 539 | + <p class="subline">811x faster than tar.gz. Works with S3, HTTPS, and local files.</p> |
540 | 540 | <div class="hero-ctas"> |
541 | 541 | <a href="https://github.com/getarcx/arcx" class="btn-primary">View on GitHub</a> |
542 | 542 | <code class="code-cta">cargo install arcx</code> |
@@ -574,22 +574,24 @@ <h3>ZIP</h3> |
574 | 574 | <h2 class="section-title">Key Numbers</h2> |
575 | 575 | <div class="stats-grid"> |
576 | 576 | <div class="stat-card"> |
577 | | - <div class="stat-number mono">7ms</div> |
578 | | - <div class="stat-label">Selective file retrieval from a completed archive</div> |
| 577 | + <div class="stat-number mono">811x</div> |
| 578 | + <div class="stat-label">Faster than tar.gz on 5 GB archive</div> |
| 579 | + <div class="stat-sublabel">7 ms vs 5,675 ms</div> |
579 | 580 | </div> |
580 | 581 | <div class="stat-card"> |
581 | | - <div class="stat-number mono">200x</div> |
582 | | - <div class="stat-label">Less data read from disk vs TAR+ZSTD</div> |
583 | | - </div> |
584 | | - <div class="stat-card"> |
585 | | - <div class="stat-number mono">~3%</div> |
586 | | - <div class="stat-label">Compression overhead vs TAR+ZSTD</div> |
| 582 | + <div class="stat-number mono">3%</div> |
| 583 | + <div class="stat-label">Of remote archive downloaded</div> |
| 584 | + <div class="stat-sublabel">455 KB of 15 MB over HTTPS</div> |
587 | 585 | </div> |
588 | 586 | <div class="stat-card"> |
589 | 587 | <div class="stat-number mono">3</div> |
590 | | - <div class="stat-label">I/O requests for remote selective access</div> |
| 588 | + <div class="stat-label">HTTP requests for remote file extraction</div> |
591 | 589 | <div class="stat-sublabel">footer + manifest + one block</div> |
592 | 590 | </div> |
| 591 | + <div class="stat-card"> |
| 592 | + <div class="stat-number mono">200x</div> |
| 593 | + <div class="stat-label">Less data read from disk vs TAR+ZSTD</div> |
| 594 | + </div> |
593 | 595 | </div> |
594 | 596 | </div> |
595 | 597 | </section> |
|
0 commit comments