reifydb-store-multi 0.8.0

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

# Single key, only in __current, written at an old commit version. A cutoff
# above its version expires it. After scan_ttl, both physical tables must be
# empty for that row.

set 1=hello version=1
---
ok

count_current
count_historical
---
current: 1
historical: 0

scan_ttl cutoff=5
---
expired=1 versions_dropped=1

count_current
count_historical
---
current: 0
historical: 0

visible 1
---
(none)