Glossary
What are single-record transactions?
A single-record transaction is, as it sounds, a read or write command which acts on a single record at a time, applying one or more operations (read, write, update, delete) to it. Aerospike’s strong consistency mode supports linearizable reads and prevents dirty reads and the loss of writes under any condition.
A (multi-record) transaction guarantees strict serializability on multiple commands acting on multiple records.
Related Articles: