Independent files
Each file is compressed independently in the current format rather than depending on one continuous compression dictionary across every archive member.
Guides / Compression
Arqivexa 0.5 stores file payloads in its .cfs format using independent per-file LZMA2 compression. That differs from a single solid compressed stream across the entire archive and supports Arqivexa's file-oriented editing model.
Compression model
Each file is compressed independently in the current format rather than depending on one continuous compression dictionary across every archive member.
When a projected file is requested, Arqivexa can locate the relevant file data without needing to conceptually rebuild an entire solid stream just to access one member.
Independent compression can sacrifice some of the ratio advantages that solid compression may achieve across many similar files, but it fits an archive intended to support independent file access and change.
Chunking
The current CFS2 archive design uses chunks up to 64 MiB for file data. Chunking provides bounded units for storage and integrity checking while preserving the per-file organization of the archive.
Archive data includes integrity information so Arqivexa can validate stored content rather than treating compressed bytes as unchecked opaque blobs.
The archive maintains metadata describing files and their stored data so the projected directory can be reconstructed when the archive is reopened.
Editing can leave obsolete historical data in the archive. After closing the workspace, Optimize can transactionally rewrite the archive to remove no-longer-needed history.
Search terminology
Searches for LZMA2 archive, LZMA2 compressed files, LZMA2 Windows archive, or per-file LZMA2 compression describe the compression technology but not necessarily the surrounding archive workflow. Arqivexa combines LZMA2 storage with an Explorer-first editable .cfs format.
How ProjFS provides on-demand access → · Editable compressed archive concept →
What compression does not provide
Arqivexa 0.5 compresses archive contents but does not currently provide password protection or encryption.
A compressed archive is still one copy of data. Maintain independent backups of important files.
LZMA2 is used inside Arqivexa's own .cfs structure. That does not make a .cfs archive interchangeable with 7z or another format that also uses LZMA2.
Current implementation
Format details can evolve in future versions. Use supported tooling for Arqivexa archives and do not infer compatibility solely from the underlying compression algorithm.