Frontmatter
| id | 9678 |
| title | Native Graph Database SQLite Persistence Adapter |
| state | Closed |
| labels | enhancementai |
| assignees | tobiu |
| createdAt | Apr 4, 2026, 3:17 AM |
| updatedAt | Apr 4, 2026, 3:34 AM |
| githubUrl | https://github.com/neomjs/neo/issues/9678 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | 9673 |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Apr 4, 2026, 3:34 AM |
Native Graph Database SQLite Persistence Adapter
Closedenhancementai
tobiu added parent issue #9673 on Apr 4, 2026, 3:18 AM
tobiu assigned to @tobiu on Apr 4, 2026, 3:34 AM

tobiu
Apr 4, 2026, 3:34 AM
Native Edge SQLite Graph Persistence and overarching migration implemented and verified via unit tests. Definition of Done met.
tobiu closed this issue on Apr 4, 2026, 3:34 AM
The
Neo.ai.graph.Databasecurrently achieves ultra-fast O(1) topological traversals via its specialized mapped memoryStore. However, to prevent total state loss on server reboots, it requires a robust disk persistence strategy.Since the
Neo.ai.*namespace uniquely targets Node.js environments unconditionally (bypassing strict browser isomerism isolation mechanisms), we can integrate standard native Node instances dynamically directly at the backend driver layer.Scope
Neo.ai.graph.storage.SQLiteutilizing robustbetter-sqlite3schemas.nodes_andedges_Store mutations to instantaneous, atomic SQL transactions.memory-core/services/GraphService.mjsand establish this new Storage configuration universally for the wholeNeo.ai.graphengine namespace.