home / tag / concurrency
Unit of Work
Unit of Work
Feb 3, 2024
2 min read
3 charts

Unit of work collects all changes about domain objects, that need to be synced (with the database) and lets committing those at the end of a (business) transaction. Tracking and...

patternunit-of-workrepository
ACID in Database Transactions
ACID in Database Transactions
Jan 4, 2024
1 min read
1 charts

ACID (Atomicity, Consistency, Isolation, Durability) in IT is a properties of a business (or database) transactions, that guarantees the reliability and data integrity of the...

architectureaciddb
Concurrency Issues and Solutions
Concurrency Issues and Solutions
Jan 3, 2024
2 min read
1 charts

Concurrency is a complex problem of the IT field. I'll try to explain some issues related to the concurrency and how to solve those issues.

architectureconcurrency
CAP theorem
CAP theorem
Dec 9, 2023
1 min read
1 charts

CAP abbreviation means: Consistency, Availability and Partitioning tolerance. Theorem states, that distributed data store can have two of three guarantees:

microservicesarchitectureconcurrency