Описание тега transactional-database

A Transactional Database is a database in which CRUD operations must be done within an atomic, consistent, isolated and durable(ACID) processing model.

Transactional databases exhibit the following behavior:

  • Transactions are the only operation
  • Data-access and data-modification operations are scoped
  • Scopes determine which object stores the transaction access
  • Asynchronous write transactions cannot have overlapping scopes
  • Commands cannot be executed outside of a transaction

References