reifydb-transaction 0.4.13

Transaction management and concurrency control for ReifyDB
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# Copyright (c) reifydb.com 2025
# This file is licensed under the Apache-2.0, see license.md file

# A read-write transaction can read the current state of the database

t1: begin
t1: set a=1
t1: commit

t2: begin
t2: get a
---
t2: "a" => "1"