reifydb-transaction 0.4.11

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

# Replica write at a fixed primary version, then query reads it.

t1: begin_replica version=100
t1: set a=1 b=2
t1: commit_replica
---
ok

t2: begin readonly
t2: scan
---
t2: "a" => "1"
t2: "b" => "2"