reifydb-transaction 0.4.6

Transaction management and concurrency control for ReifyDB
Documentation
# Copyright (c) reifydb.com 2025
# This file is licensed under the Apache-2.0, 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