@threadbase-sh/streamer 1.38.0 → 1.39.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.cjs +276 -35
- package/dist/cli.cjs.map +1 -1
- package/dist/index.cjs +273 -31
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +49 -4
- package/dist/index.d.ts +49 -4
- package/dist/index.js +273 -31
- package/dist/index.js.map +1 -1
- package/dist/migrations/014_add_conversation_meta_file_path_index.sql +5 -0
- package/package.json +1 -1
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
-- conversation_meta.file_path had no index, so getIdByFilePath /
|
|
2
|
+
-- getProviderByFilePath (called per JSONL line from each active session's
|
|
3
|
+
-- watcher) were full-table scans, blocking the single-threaded event loop
|
|
4
|
+
-- under concurrent active sessions.
|
|
5
|
+
CREATE INDEX IF NOT EXISTS idx_meta_file_path ON conversation_meta(file_path);
|
package/package.json
CHANGED