reifydb-transaction 0.6.0

Transaction management and concurrency control for ReifyDB
Documentation
# Copyright (c) reifydb.com 2026
# This file is licensed under the AGPL-3.0-or-later, see license.md file

# multiple read write transactions are not increasing the version if they are not changing anything

t1: begin
t1: version
t1: commit
---
t1: 1

t2: begin
t2: version
---
t2: 1

t3: begin
t3: version
---
t3: 1

t2: commit
t3: commit

t4: begin
t4: version
---
t4: 1