use async_trait::async_trait;
use hnsw_rs::prelude::{DistCosine, Hnsw};
use meerkat_core::memory::{
MemoryIndexBatch, MemoryIndexReceipt, MemoryMetadata, MemoryResult, MemorySearchScope,
MemoryStore, MemoryStoreError,
};
use meerkat_core::types::SessionId;
use rusqlite::{Connection, OptionalExtension, params};
use std::collections::HashMap;
use std::path::{Path, PathBuf};
use std::sync::Arc;
use std::sync::atomic::{AtomicUsize, Ordering};
use std::time::Duration;
use tokio::sync::Mutex;
const SQLITE_BUSY_TIMEOUT_MS: u64 = 5_000;
const CREATE_MEMORY_SCHEMA_SQL: &str = r"
CREATE TABLE IF NOT EXISTS memory_metadata (
point_id INTEGER PRIMARY KEY,
metadata_json BLOB NOT NULL
);
CREATE TABLE IF NOT EXISTS memory_text (
point_id INTEGER PRIMARY KEY,
content BLOB NOT NULL
)";
const VOCAB_DIM: usize = 4096;
const MAX_NB_CONNECTION: usize = 16;
const MAX_LAYER: usize = 16;
const EF_CONSTRUCTION: usize = 200;
const MIN_INDEX_ELEMENTS_HINT: usize = 1;
fn open_connection(path: &Path) -> Result<Connection, MemoryStoreError> {
if let Some(parent) = path.parent() {
std::fs::create_dir_all(parent).map_err(MemoryStoreError::Io)?;
}
let conn = Connection::open(path).map_err(|e| MemoryStoreError::Index(e.to_string()))?;
conn.busy_timeout(Duration::from_millis(SQLITE_BUSY_TIMEOUT_MS))
.map_err(|e| MemoryStoreError::Index(e.to_string()))?;
conn.pragma_update(None, "journal_mode", "WAL")
.map_err(|e| MemoryStoreError::Index(e.to_string()))?;
conn.pragma_update(None, "synchronous", "FULL")
.map_err(|e| MemoryStoreError::Index(e.to_string()))?;
conn.execute_batch(CREATE_MEMORY_SCHEMA_SQL)
.map_err(|e| MemoryStoreError::Index(e.to_string()))?;
Ok(conn)
}
type MemoryHnswIndex = Hnsw<'static, f32, DistCosine>;
fn bounded_index_elements_hint(entries: usize) -> usize {
entries.max(MIN_INDEX_ELEMENTS_HINT)
}
fn new_hnsw_index(max_elements_hint: usize) -> MemoryHnswIndex {
Hnsw::<'static, f32, DistCosine>::new(
MAX_NB_CONNECTION,
bounded_index_elements_hint(max_elements_hint),
MAX_LAYER,
EF_CONSTRUCTION,
DistCosine {},
)
}
struct ScopedHnswIndex {
index: MemoryHnswIndex,
#[cfg(test)]
max_elements_hint: usize,
}
impl ScopedHnswIndex {
fn new(max_elements_hint: usize) -> Self {
let max_elements_hint = bounded_index_elements_hint(max_elements_hint);
Self {
index: new_hnsw_index(max_elements_hint),
#[cfg(test)]
max_elements_hint,
}
}
fn insert(&self, embedding: &[f32], point_id: usize) {
self.index.insert((embedding, point_id));
}
}
pub struct HnswMemoryStore {
indices: Arc<std::sync::RwLock<HashMap<SessionId, ScopedHnswIndex>>>,
db_path: PathBuf,
next_id: AtomicUsize,
insert_lock: Mutex<()>,
path: PathBuf,
}
impl HnswMemoryStore {
pub fn open(dir: impl AsRef<Path>) -> Result<Self, MemoryStoreError> {
let dir = dir.as_ref();
std::fs::create_dir_all(dir).map_err(MemoryStoreError::Io)?;
let db_path = dir.join("memory.sqlite3");
let conn = open_connection(&db_path)?;
let next_id = {
let max_id: Option<i64> = conn
.query_row("SELECT MAX(point_id) FROM memory_metadata", [], |row| {
row.get(0)
})
.optional()
.map_err(|e| MemoryStoreError::Index(e.to_string()))?
.flatten();
match max_id {
Some(value) => usize::try_from(value + 1)
.map_err(|_| MemoryStoreError::Index("point ID out of range".to_string()))?,
None => 0,
}
};
let mut session_counts = HashMap::<SessionId, usize>::new();
{
let mut count_stmt = conn
.prepare("SELECT metadata_json FROM memory_metadata")
.map_err(|e| MemoryStoreError::Index(e.to_string()))?;
let metadata_rows = count_stmt
.query_map([], |row| row.get::<_, Vec<u8>>(0))
.map_err(|e| MemoryStoreError::Index(e.to_string()))?;
for metadata_json in metadata_rows {
let metadata_json =
metadata_json.map_err(|e| MemoryStoreError::Index(e.to_string()))?;
let metadata: MemoryMetadata = serde_json::from_slice(&metadata_json)
.map_err(|e| MemoryStoreError::Embedding(e.to_string()))?;
*session_counts.entry(metadata.session_id).or_default() += 1;
}
}
let mut indices = HashMap::<SessionId, ScopedHnswIndex>::new();
let mut stmt = conn
.prepare(
"SELECT t.point_id, t.content, m.metadata_json \
FROM memory_text t \
JOIN memory_metadata m ON m.point_id = t.point_id \
ORDER BY t.point_id ASC",
)
.map_err(|e| MemoryStoreError::Index(e.to_string()))?;
let rows = stmt
.query_map([], |row| {
Ok((
row.get::<_, i64>(0)?,
row.get::<_, Vec<u8>>(1)?,
row.get::<_, Vec<u8>>(2)?,
))
})
.map_err(|e| MemoryStoreError::Index(e.to_string()))?;
for row in rows {
let (point_id, text, metadata_json) =
row.map_err(|e| MemoryStoreError::Index(e.to_string()))?;
let point_id = usize::try_from(point_id)
.map_err(|_| MemoryStoreError::Index("point ID out of range".to_string()))?;
let metadata: MemoryMetadata = serde_json::from_slice(&metadata_json)
.map_err(|e| MemoryStoreError::Embedding(e.to_string()))?;
let text = String::from_utf8_lossy(&text);
let embedding = text_to_embedding(&text);
let max_elements_hint = *session_counts
.get(&metadata.session_id)
.unwrap_or(&MIN_INDEX_ELEMENTS_HINT);
indices
.entry(metadata.session_id)
.or_insert_with(|| ScopedHnswIndex::new(max_elements_hint))
.insert(&embedding, point_id);
}
Ok(Self {
indices: Arc::new(std::sync::RwLock::new(indices)),
db_path,
next_id: AtomicUsize::new(next_id),
insert_lock: Mutex::new(()),
path: dir.to_path_buf(),
})
}
pub fn path(&self) -> &Path {
&self.path
}
#[cfg(test)]
#[allow(clippy::unwrap_used)]
fn hnsw_index_count(&self) -> usize {
self.indices.read().unwrap().len()
}
#[cfg(test)]
#[allow(clippy::unwrap_used)]
fn hnsw_point_count(&self) -> usize {
self.indices
.read()
.unwrap()
.values()
.map(|index| index.index.get_nb_point())
.sum()
}
#[cfg(test)]
#[allow(clippy::unwrap_used)]
fn hnsw_index_hints(&self) -> Vec<usize> {
self.indices
.read()
.unwrap()
.values()
.map(|index| index.max_elements_hint)
.collect()
}
}
#[async_trait]
impl MemoryStore for HnswMemoryStore {
async fn index_scoped_batch(
&self,
batch: MemoryIndexBatch,
) -> Result<MemoryIndexReceipt, MemoryStoreError> {
let (receipt_scope, requests) = batch.into_parts();
let indexed_entries = requests.len();
if requests.is_empty() {
return Ok(MemoryIndexReceipt {
scope: receipt_scope,
indexed_entries: 0,
});
}
let mut entries = Vec::with_capacity(indexed_entries);
for request in requests {
let (_scope, content, metadata) = request.into_parts();
let meta_json = serde_json::to_vec(&metadata)
.map_err(|e| MemoryStoreError::Embedding(e.to_string()))?;
let embedding = text_to_embedding(&content);
entries.push((content, meta_json, embedding));
}
let db_path = self.db_path.clone();
let indices = Arc::clone(&self.indices);
let session_id = receipt_scope.session_id().clone();
let _guard = self.insert_lock.lock().await;
let point_id = self.next_id.load(Ordering::Acquire);
let next_id = point_id
.checked_add(indexed_entries)
.ok_or_else(|| MemoryStoreError::Index("point ID overflow".to_string()))?;
let point_ids: Vec<i64> = (point_id..next_id)
.map(|id| {
i64::try_from(id)
.map_err(|_| MemoryStoreError::Index("point ID out of range".to_string()))
})
.collect::<Result<_, _>>()?;
let insert_result = tokio::task::spawn_blocking(move || {
let mut conn = open_connection(&db_path)?;
let tx = conn
.transaction()
.map_err(|e| MemoryStoreError::Index(e.to_string()))?;
for (point_id_i64, (content, meta_json, _embedding)) in point_ids.iter().zip(&entries) {
tx.execute(
"INSERT INTO memory_metadata (point_id, metadata_json) VALUES (?1, ?2)",
params![point_id_i64, meta_json],
)
.map_err(|e| MemoryStoreError::Index(e.to_string()))?;
tx.execute(
"INSERT INTO memory_text (point_id, content) VALUES (?1, ?2)",
params![point_id_i64, content.as_bytes()],
)
.map_err(|e| MemoryStoreError::Index(e.to_string()))?;
}
tx.commit()
.map_err(|e| MemoryStoreError::Index(e.to_string()))?;
let index_result = (|| {
let mut indices = indices
.write()
.map_err(|_| MemoryStoreError::Index("HNSW index lock poisoned".to_string()))?;
let index = indices
.entry(session_id)
.or_insert_with(|| ScopedHnswIndex::new(indexed_entries));
for (point_id, (_content, _meta_json, embedding)) in point_ids.iter().zip(&entries)
{
let point_id = usize::try_from(*point_id).map_err(|_| {
MemoryStoreError::Index("point ID out of range".to_string())
})?;
index.insert(embedding, point_id);
}
Ok::<(), MemoryStoreError>(())
})();
if let Err(error) = index_result {
let mut cleanup = open_connection(&db_path)?;
let tx = cleanup
.transaction()
.map_err(|e| MemoryStoreError::Index(e.to_string()))?;
for point_id_i64 in &point_ids {
tx.execute(
"DELETE FROM memory_metadata WHERE point_id = ?1",
params![point_id_i64],
)
.map_err(|e| MemoryStoreError::Index(e.to_string()))?;
tx.execute(
"DELETE FROM memory_text WHERE point_id = ?1",
params![point_id_i64],
)
.map_err(|e| MemoryStoreError::Index(e.to_string()))?;
}
tx.commit()
.map_err(|e| MemoryStoreError::Index(e.to_string()))?;
return Err(error);
}
Ok::<(), MemoryStoreError>(())
})
.await
.map_err(|e| MemoryStoreError::Index(format!("index task join failed: {e}")))?;
if let Err(error) = insert_result {
self.next_id.store(next_id, Ordering::Release);
return Err(error);
}
self.next_id.store(next_id, Ordering::Release);
Ok(MemoryIndexReceipt {
scope: receipt_scope,
indexed_entries,
})
}
async fn search(
&self,
scope: &MemorySearchScope,
query: &str,
limit: usize,
) -> Result<Vec<MemoryResult>, MemoryStoreError> {
if limit == 0 {
return Ok(Vec::new());
}
let query = query.to_owned();
let scope = scope.clone();
let db_path = self.db_path.clone();
let indices = Arc::clone(&self.indices);
tokio::task::spawn_blocking(move || {
let embedding = text_to_embedding(&query);
let neighbors = {
let indices = indices
.read()
.map_err(|_| MemoryStoreError::Index("HNSW index lock poisoned".to_string()))?;
let Some(index) = indices.get(scope.session_id()) else {
return Ok(Vec::new());
};
index
.index
.search(&embedding, limit, limit.max(EF_CONSTRUCTION))
};
let conn = open_connection(&db_path)?;
let mut results = Vec::with_capacity(neighbors.len());
for neighbor in &neighbors {
let point_id = i64::try_from(neighbor.d_id)
.map_err(|_| MemoryStoreError::Index("point ID out of range".to_string()))?;
let content = match conn
.query_row(
"SELECT content FROM memory_text WHERE point_id = ?1",
params![point_id],
|row| row.get::<_, Vec<u8>>(0),
)
.optional()
.map_err(|e| MemoryStoreError::Index(e.to_string()))?
{
Some(bytes) => String::from_utf8_lossy(&bytes).into_owned(),
None => continue,
};
let metadata = match conn
.query_row(
"SELECT metadata_json FROM memory_metadata WHERE point_id = ?1",
params![point_id],
|row| row.get::<_, Vec<u8>>(0),
)
.optional()
.map_err(|e| MemoryStoreError::Index(e.to_string()))?
{
Some(bytes) => serde_json::from_slice(&bytes)
.map_err(|e| MemoryStoreError::Embedding(e.to_string()))?,
None => continue,
};
if !scope.includes(&metadata) {
continue;
}
let score = 1.0 - (neighbor.distance / 2.0);
results.push(MemoryResult {
content,
metadata,
score,
});
}
Ok::<Vec<MemoryResult>, MemoryStoreError>(results)
})
.await
.map_err(|e| MemoryStoreError::Index(format!("search task join failed: {e}")))?
}
}
fn text_to_embedding(text: &str) -> [f32; VOCAB_DIM] {
let mut vec = [0.0f32; VOCAB_DIM];
for word in text.split_whitespace() {
let hash = word.bytes().fold(0usize, |acc, b| {
acc.wrapping_mul(31)
.wrapping_add(b.to_ascii_lowercase() as usize)
}) % VOCAB_DIM;
vec[hash] += 1.0;
}
let norm: f32 = vec.iter().map(|x| x * x).sum::<f32>().sqrt();
if norm > 0.0 {
for x in &mut vec {
*x /= norm;
}
}
vec
}
#[cfg(test)]
#[allow(clippy::unwrap_used, clippy::expect_used)]
mod tests {
use super::*;
use meerkat_core::memory::{MemoryIndexRequest, MemoryIndexScope, MemoryMetadata};
use meerkat_core::types::SessionId;
use std::time::SystemTime;
use tempfile::TempDir;
fn meta(session_id: &SessionId) -> MemoryMetadata {
MemoryMetadata {
session_id: session_id.clone(),
turn: Some(1),
indexed_at: SystemTime::now(),
}
}
fn request(content: impl Into<String>, session_id: &SessionId) -> MemoryIndexRequest {
MemoryIndexRequest::new(
MemoryIndexScope::for_session(session_id.clone()),
content.into(),
meta(session_id),
)
.unwrap()
}
#[tokio::test]
async fn test_hnsw_index_and_search() {
let dir = TempDir::new().unwrap();
let store = HnswMemoryStore::open(dir.path().join("memory")).unwrap();
let session_id = SessionId::new();
let scope = MemorySearchScope::for_session(session_id.clone());
let other_session_id = SessionId::new();
store
.index_scoped(request(
"The user wants to implement a REST API with authentication",
&session_id,
))
.await
.unwrap();
store
.index_scoped(request(
"Configuration files use TOML format for settings",
&session_id,
))
.await
.unwrap();
store
.index_scoped(request(
"JWT tokens handle authentication and authorization",
&other_session_id,
))
.await
.unwrap();
let results = store
.search(&scope, "REST API authentication", 10)
.await
.unwrap();
assert!(!results.is_empty());
assert!(
results
.iter()
.all(|result| scope.includes(&result.metadata))
);
assert!(
results[0].content.contains("REST") || results[0].content.contains("authentication"),
"Top result should be relevant: {}",
results[0].content
);
}
#[tokio::test]
async fn test_hnsw_search_empty_store() {
let dir = TempDir::new().unwrap();
let store = HnswMemoryStore::open(dir.path().join("memory")).unwrap();
let scope = MemorySearchScope::for_session(SessionId::new());
let results = store.search(&scope, "anything", 10).await.unwrap();
assert!(results.is_empty());
}
#[tokio::test]
async fn test_hnsw_search_limit() {
let dir = TempDir::new().unwrap();
let store = HnswMemoryStore::open(dir.path().join("memory")).unwrap();
let session_id = SessionId::new();
let scope = MemorySearchScope::for_session(session_id.clone());
for i in 0..10 {
store
.index_scoped(request(
format!("Item {i} with keyword test data"),
&session_id,
))
.await
.unwrap();
}
let results = store.search(&scope, "test", 3).await.unwrap();
assert!(results.len() <= 3);
}
#[tokio::test]
async fn test_hnsw_search_scopes_before_candidate_selection() {
let dir = TempDir::new().unwrap();
let store = HnswMemoryStore::open(dir.path().join("memory")).unwrap();
let session_id = SessionId::new();
let scope = MemorySearchScope::for_session(session_id.clone());
for _ in 0..32 {
let other_session_id = SessionId::new();
store
.index_scoped(request(
"needle recall exact global candidate",
&other_session_id,
))
.await
.unwrap();
}
store
.index_scoped(request("needle recall scoped survivor", &session_id))
.await
.unwrap();
let results = store
.search(&scope, "needle recall exact global candidate", 1)
.await
.unwrap();
assert_eq!(results.len(), 1);
assert_eq!(results[0].metadata.session_id, session_id);
assert!(
results[0].content.contains("scoped survivor"),
"scoped candidates must be ranked before the limit is applied"
);
}
#[tokio::test]
async fn test_hnsw_many_small_scopes_use_bounded_index_hints_across_reopen() {
let dir = TempDir::new().unwrap();
let memory_dir = dir.path().join("memory");
let mut session_ids = Vec::new();
{
let store = HnswMemoryStore::open(&memory_dir).unwrap();
for i in 0..48 {
let session_id = SessionId::new();
store
.index_scoped(request(
format!("single scoped memory entry {i}"),
&session_id,
))
.await
.unwrap();
session_ids.push(session_id);
}
assert_eq!(
store.hnsw_index_count(),
session_ids.len(),
"one-entry scopes keep separate scoped indexes for recall"
);
assert!(
store
.hnsw_index_hints()
.iter()
.all(|hint| *hint == MIN_INDEX_ELEMENTS_HINT),
"many one-entry scopes must not allocate oversized HNSW indexes"
);
assert_eq!(store.hnsw_point_count(), session_ids.len());
}
{
let store = HnswMemoryStore::open(&memory_dir).unwrap();
assert_eq!(
store.hnsw_index_count(),
session_ids.len(),
"reopen keeps scoped indexes for recall"
);
assert!(
store
.hnsw_index_hints()
.iter()
.all(|hint| *hint == MIN_INDEX_ELEMENTS_HINT),
"reopen must rebuild one-entry scoped indexes with bounded hints"
);
assert_eq!(store.hnsw_point_count(), session_ids.len());
let last_session = session_ids.last().unwrap();
let results = store
.search(
&MemorySearchScope::for_session(last_session.clone()),
"single scoped memory entry 47",
1,
)
.await
.unwrap();
assert_eq!(results.len(), 1);
assert_eq!(results[0].metadata.session_id, *last_session);
}
}
#[tokio::test]
async fn test_hnsw_persists_across_reopen() {
let dir = TempDir::new().unwrap();
let memory_dir = dir.path().join("memory");
let session_id = SessionId::new();
let scope = MemorySearchScope::for_session(session_id.clone());
{
let store = HnswMemoryStore::open(&memory_dir).unwrap();
store
.index_scoped(request(
"Persistent memory entry about Rust programming",
&session_id,
))
.await
.unwrap();
}
{
let store = HnswMemoryStore::open(&memory_dir).unwrap();
let results = store.search(&scope, "Rust programming", 5).await.unwrap();
assert!(!results.is_empty(), "Data should survive reopen");
assert!(results[0].content.contains("Rust"));
}
}
#[tokio::test]
async fn test_hnsw_score_range() {
let dir = TempDir::new().unwrap();
let store = HnswMemoryStore::open(dir.path().join("memory")).unwrap();
let session_id = SessionId::new();
let scope = MemorySearchScope::for_session(session_id.clone());
store
.index_scoped(request("Exact match query text here", &session_id))
.await
.unwrap();
let results = store
.search(&scope, "Exact match query text here", 1)
.await
.unwrap();
assert!(!results.is_empty());
assert!(
results[0].score > 0.9,
"Exact match should have high score, got: {}",
results[0].score
);
assert!(results[0].score <= 1.0);
assert!(results[0].score >= 0.0);
}
}