Database / ValKey Interview questions
Define Valkey persistence?
Persistence is the mechanism that writes an in-memory Valkey dataset to disk so it can be reloaded after a restart, crash, or planned maintenance, instead of being lost when the process stops.
Valkey supports two persistence mechanisms that can be used independently or together: RDB point-in-time snapshots and AOF (Append Only File) command logging.
A deployment used purely as an ephemeral cache can disable persistence entirely, trading durability for slightly less disk overhead.
More Related questions...