feat(search): try a ground-up sqlite search approach

This commit is contained in:
perf3ct
2025-09-03 00:34:55 +00:00
parent d074841885
commit 58c225237c
24 changed files with 4756 additions and 9 deletions

View File

@@ -132,6 +132,14 @@ export interface OptionDefinitions extends KeyboardShortcutsOptions<KeyboardActi
redirectBareDomain: boolean;
showLoginInShareTheme: boolean;
// Search settings
searchBackend: string;
searchSqliteEnabled: boolean;
searchSqlitePerformanceLogging: boolean;
searchSqliteMaxMemory: number;
searchSqliteBatchSize: number;
searchSqliteAutoRebuild: boolean;
// AI/LLM integration options
aiEnabled: boolean;
aiProvider: string;