reifydb-store-multi 0.5.0

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

# Single key, only in __current. Old created_at. TTL expires it.
# After scan_ttl, both physical tables must be empty for that row.

set 1=hello version=1 created=1000
---
ok

count_current
count_historical
---
current: 1
historical: 0

scan_ttl mode=created duration=5000 now=10000
---
expired=1 versions_dropped=1

count_current
count_historical
---
current: 0
historical: 0

visible 1
---
(none)