From 8df0e02d3fea0bbef8018b2611fcb850bab9c6da Mon Sep 17 00:00:00 2001 From: dimgigov Date: Thu, 30 Jul 2026 16:36:49 +0300 Subject: [PATCH] docs: engine persistence (C1) done --- README.md | 2 +- docs/superpowers/specs/2026-07-30-engine-persistence-design.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fb27df6..5d36e52 100644 --- a/README.md +++ b/README.md @@ -1560,7 +1560,7 @@ features are still being refined: | 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. | | 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. | All core functionality is complete and production-tested. The roadmap above diff --git a/docs/superpowers/specs/2026-07-30-engine-persistence-design.md b/docs/superpowers/specs/2026-07-30-engine-persistence-design.md index ab906fc..1b27d4c 100644 --- a/docs/superpowers/specs/2026-07-30-engine-persistence-design.md +++ b/docs/superpowers/specs/2026-07-30-engine-persistence-design.md @@ -1,7 +1,7 @@ # Engine Persistence (C1) — Design 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