-
Notifications
You must be signed in to change notification settings - Fork 1
Persistence and Durability
Anshu Garg edited this page Sep 13, 2026
·
1 revision
VortexKV offers dual persistence combining point-in-time binary RDB snapshots with Append-Only File (AOF) durability.
Logs every mutating command (SET, HSET, XADD, etc.) to disk:
-
fsync always: Maximum durability; syncs after every write. -
fsync everysec: Recommended default; syncs once per second with < 1% throughput impact. -
fsync no: Delegates sync timing to the operating system kernel.
Launch with AOF:
./bin/vortex-server -aof vortex.aof -aof-fsync everysecPoint-in-time compact snapshots in standard REDIS0009 format with 64-bit CRC64 checksum verification:
-
SAVE: Synchronous blocking snapshot. -
BGSAVE: Asynchronous non-blocking background snapshot. -
LASTSAVE: Returns UNIX timestamp of the last successful disk snapshot.
Launch with RDB:
./bin/vortex-server -rdb dump.rdb