Problem
On startup or when the index is empty, rebuildIndex loads every observation from every session into memory. For large memory stores, this could cause OOM.
Location
src/functions/search.ts:15-33
Suggested Fix
Stream or paginate the rebuild process to avoid loading everything at once.
Problem
On startup or when the index is empty,
rebuildIndexloads every observation from every session into memory. For large memory stores, this could cause OOM.Location
src/functions/search.ts:15-33Suggested Fix
Stream or paginate the rebuild process to avoid loading everything at once.