-
We use the FTS5 module for symbol search: https://www.sqlite.org/fts5.html#full_text_query_syntax. It's possible that a search term, e.g. `blah=`, will trigger a syntax error due to the `=`.
-
lib/DBD/SQLite/Fulltext_search.pod states for FTS tables:
> Columns may be typed, but the type information is ignored.
However, this changed in [FTS5](https://sqlite.org/fts5.html):
> It is a…
-
I tried using it on mac with sqlite compiled with fts5 extension built in:
```
sqlite --version
3.37.0 2021-12-09 01:34:53 9ff244ce0739f8ee52a3e9671adb4ee54c83c640b02e3f9d185fd2f9a179aapl
sqlite…
-
The method of returning keywords doesn't work well when the users searches for a phrase that exists across separate rows within the transcript. It also doesn't provide much context. For example if the…
-
I had to experiment a bit to get this to compile under Windows x64. I suggest adding a few lines to the readme, but would like someone to verify that the instructions work, because I am not 100% sure …
-
Somehow related to #11172
### Use case:
Now there is an `fts5` type in SQLIte, which allows for the following syntax:
```sql
CREATE VIRTUAL TABLE email USING fts5(sender, title, body);
SE…
-
What's the recommended way of performing BM25 ranking search with sqlite-utils? I found a mention of `rank_bm25()` in the [docs](https://sqlite-utils.datasette.io/en/stable/python-api.html#building-sq…
-
### Which Cloudflare product(s) does this pertain to?
D1
### What version(s) of the tool(s) are you using?
3.65.1
### What version of Node are you using?
v20.14.0
### What operating …
-
**Is your feature request related to a problem? Please describe.**
I know you're planing to add fuzzy search through custom indexes. Sqlite has build in search indexes (FTS5) that run pretty efficien…
-
Hello. Let me thank you once again for this software.
I am afraid that there is something that threatens to make the software unusable for me - and I imagine that same applies to other people too, …