Hello,
I'm currently using FTS5 for full-text search in my application and am interested in adding vector-based search capabilities using sqlite-vec.
I add an external table as this part describe. https://www.sqlite.org/fts5.html#external_content_and_contentless_tables
I have a few questions regarding compatibility and integration:
Compatibility: Can sqlite-vec and FTS5 be used together within the same database? Specifically, how can I manage separate indexing for text and vector data, and are there any considerations I should be aware of?
Integration: What is the recommended method for linking sqlite-vec vector tables with FTS5 indexed data? Should I use identifiers like rowid for cross-referencing?
Many thanks
Hello,
I'm currently using FTS5 for full-text search in my application and am interested in adding vector-based search capabilities using sqlite-vec.
I add an external table as this part describe. https://www.sqlite.org/fts5.html#external_content_and_contentless_tables
I have a few questions regarding compatibility and integration:
Compatibility: Can sqlite-vec and FTS5 be used together within the same database? Specifically, how can I manage separate indexing for text and vector data, and are there any considerations I should be aware of?
Integration: What is the recommended method for linking sqlite-vec vector tables with FTS5 indexed data? Should I use identifiers like rowid for cross-referencing?
Many thanks