release: v0.2.3 AriaEngine 引擎加固 — RB-Tree fixDelete/LSM SSTable缓存预热/LZ4格式修复
CI / test (18.x) (push) Successful in 9m58s
CI / test (20.x) (push) Successful in 9m56s
CI / test (22.x) (push) Successful in 9m58s
CI / test (24.x) (push) Successful in 9m52s

This commit is contained in:
thzxx
2026-07-27 21:22:29 +08:00
parent 966291dadc
commit 4a3feac9ea
17 changed files with 482 additions and 170 deletions
+12
View File
@@ -2,6 +2,18 @@
All notable changes to MetonaSqlark will be documented in this file.
## [0.2.3] - 2026-07-27
### Fixed
- **RB-Tree fixDelete 完整实现** — 补全标准红黑树删除修复(双黑问题),保证 O(log n) 性能
- **LSM SSTable 缓存预热** — `init()` 时预加载所有 SSTable 数据到缓存,消除 cache miss 导致的数据丢失
- **LZ4 往返正确性** — 重写 compress/decompress 为统一 token 格式,压缩解压完全可逆
### Changed
- LZ4 压缩测试增加 3 个往返正确性验证用例
---
## [0.2.2] - 2026-07-27
### Added