Snapshots before a log

Most databases I have worked with had a write-ahead log before they had a snapshot story. LoraDB went the other way.
This founder note is historical. The WAL has since landed on every
filesystem-backed surface, snapshots now write the columnar LORACOL1
format with compression/encryption support, and WASM uses
saveSnapshot / loadSnapshot instead of the older byte-specific
method names.
At the time, v0.3 shipped manual point-in-time snapshots and nothing else on the persistence side. No append-only log. No background checkpoint loop. No continuous durability. One file on disk, taken on demand, atomic on rename.
The order is intentional, and it is the kind of decision that is easier to defend before the release than after.








