engram-storage 0.3.0

SQLite storage with FTS5
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! SQLite-backed storage layer with FTS5 full-text search.

pub mod consolidation;
pub mod database;
pub mod error;
pub mod fts;
pub mod memory;
pub mod q_table_store;
pub mod schema;

pub use database::Database;
pub use error::StorageError;
pub use fts::FtsResult;
pub use memory::{Memory, row_to_memory};