Create a zip-archive-backed Zarr v2 store (mmap, append-only).
Source:R/zarr_store.R
new_mmap_zip_store.RdOpens (or creates) a single ZIP archive at path as a Zarr v2 store.
Reads use a shared mmap of the archive (zero-copy for stored entries
via ALTREP RAW); writes append entries with a crash-safe two-step
commit protocol. Mirrors upstream
DataAxesFormats.MmapZipStores.MmapZipStore.
Details
Modes: "r" (read existing), "r+" (read/write existing),
"w+" (read/write, create if missing), "w" (truncate + create).
On a writable open, the store reserves max_file_size bytes of
virtual address space (no RAM cost) and grows the file via
ftruncate as entries append. Default max_file_size is 1 TiB.