0
0
Fork 0
mirror of https://github.com/healthchecks/healthchecks.git synced 2025-04-03 04:15:29 +00:00

Switch from "trigram" to "porter unicode61" tokenizer

The trigram tokenizer seems to give better results, but is not
available on the SQLite version that ships with Ubuntu 20.04.
This commit is contained in:
Pēteris Caune 2022-08-22 12:51:53 +03:00
parent 5d5e469347
commit 7ac1437c8a
No known key found for this signature in database
GPG key ID: E28D7679E9A9EDE2
3 changed files with 1 additions and 5 deletions
hc/front/management/commands
search.db
static/js

View file

@ -15,7 +15,7 @@ class Command(BaseCommand):
cur = con.cursor()
cur.execute("DROP TABLE IF EXISTS docs")
cur.execute(
"""CREATE VIRTUAL TABLE docs USING FTS5(slug, title, body, tokenize="trigram")"""
"""CREATE VIRTUAL TABLE docs USING FTS5(slug, title, body, tokenize="porter unicode61")"""
)
docs_path = os.path.join(settings.BASE_DIR, "templates/docs")

BIN
search.db

Binary file not shown.

View file

@ -24,8 +24,4 @@ $(function() {
}
});
});
// input.on("blur", function() {
// $("#search-results").removeClass("on");
// });
});