docs: engine persistence (C1) done
CI / test (push) Has been cancelled
CI / verify (push) Has been cancelled
Clients CI / build-server (push) Has been cancelled
Clients CI / test-python (push) Has been cancelled
Clients CI / test-javascript (push) Has been cancelled
Clients CI / test-nim (push) Has been cancelled
Clients CI / test-rust (push) Has been cancelled

This commit is contained in:
2026-07-30 16:36:49 +03:00
parent 821b668d87
commit 8df0e02d3f
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1560,7 +1560,7 @@ features are still being refined:
| HNSW vector search | ✅ Implemented | Hierarchical graph navigation with SIMD-optimized distance metrics. | | HNSW vector search | ✅ Implemented | Hierarchical graph navigation with SIMD-optimized distance metrics. |
| TCP server execution | ✅ Implemented | Full binary wire protocol parsing and BaraQL query execution. | | TCP server execution | ✅ Implemented | Full binary wire protocol parsing and BaraQL query execution. |
| Raft consensus | ✅ Core logic | Full Raft algorithm with log replication; network transport pluggable. | | Raft consensus | ✅ Core logic | Full Raft algorithm with log replication; network transport pluggable. |
| Graph / FTS / Columnar | ✅ Implemented | In-memory engines with serialization; persistence layer optional. | | Graph / FTS / Columnar | ✅ Implemented | In-memory engines with serialization; FTS/vector/graph indexes persist across restarts. |
| Query codegen | ✅ Implemented | IR plans compile to storage engine operations with optimization passes. | | Query codegen | ✅ Implemented | IR plans compile to storage engine operations with optimization passes. |
All core functionality is complete and production-tested. The roadmap above All core functionality is complete and production-tested. The roadmap above
@@ -1,7 +1,7 @@
# Engine Persistence (C1) — Design # Engine Persistence (C1) — Design
Date: 2026-07-30 Date: 2026-07-30
Status: Approved direction (user: "продължи"); implementation follows. Status: Done — schema keys + restoreEngines replay for FTS/HNSW, table-scan loader for graphs, DROP path cleanup, unnamed-index fix.
## Problem ## Problem