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:
parent
5d5e469347
commit
7ac1437c8a
3 changed files with 1 additions and 5 deletions
|
@ -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
BIN
search.db
Binary file not shown.
|
@ -24,8 +24,4 @@ $(function() {
|
|||
}
|
||||
});
|
||||
});
|
||||
|
||||
// input.on("blur", function() {
|
||||
// $("#search-results").removeClass("on");
|
||||
// });
|
||||
});
|
Loading…
Add table
Reference in a new issue