791 B
791 B
v0.2.4 AriaEngine 生产级改造
实施清单
- 二级索引 —
aria/index.ts: 每列维护独立 LSM Tree - tryIndexLookup 扩展 — 支持 $eq/$in/$gt/$lt 走索引
- MVCC 接入 — 替换 ad-hoc txnSnapshot 为 MVCCManager
- MVCC 自动 GC — checkpoint 后每 10 次 gc 一次
- Bloom Filter 序列化 — sstable_builder 写入 + sstable 读取 probe
- WAL 大小阈值 — checkpoint.ts 支持按字节触发
- WAL 默认 full sync — types.ts 改默认值
- 异步 Compaction — LSM compactLevel 改为 setTimeout 分片
- 惰性范围扫描 — merge_iterator 不一次性物化
- 页面槽位压缩 — slot.ts compactSlots()
- 内存预算 — types.ts 新增 maxMemoryMB
- package 0.2.4 + docs + tests