reifydb-store-multi 0.4.8

Multi-version storage for OLTP operations with MVCC support
Documentation
# Copyright (c) reifydb.com 2025
# This file is licensed under the Apache-2.0, see license.md file

set a=1 version=1
set a=2 version=2
set a=3 version=3
---
ok

contains a version=3
---
"a" => true

contains a version=2
---
"a" => true

contains a version=1
---
"a" => true

contains a version=0
---
"a" => false

# version is lower bound - if not overwritten in the future it will be found

contains a version=4
---
"a" => true

contains a version=1024
---
"a" => true