diff options
author | Gabriel A. Giovanini <mail@gabrielgio.me> | 2024-04-25 22:31:01 +0200 |
---|---|---|
committer | Gabriel A. Giovanini <mail@gabrielgio.me> | 2024-04-25 22:31:01 +0200 |
commit | 65fd7bc9218f1bb0b4a5dd8d8141239b3211e1cd (patch) | |
tree | 66902f9d4932a4aae43d72aab003ee14d3f8b8c5 /db | |
parent | b7ca1117b18e228b84dd62a677a0a2ca52b3c549 (diff) | |
download | dict-65fd7bc9218f1bb0b4a5dd8d8141239b3211e1cd.tar.gz dict-65fd7bc9218f1bb0b4a5dd8d8141239b3211e1cd.tar.bz2 dict-65fd7bc9218f1bb0b4a5dd8d8141239b3211e1cd.zip |
ref: Use storage instead of memory
With async search we can afford waiting a bit more it to load without
making the ui sluggish.
Diffstat (limited to 'db')
-rw-r--r-- | db/db.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -57,7 +57,7 @@ func (d *DB) SelectDict(ctx context.Context, query string, limit int) ([]*Word, `SELECT word, line FROM words - WHERE word MATCH ? + WHERE words MATCH ? ORDER BY rank LIMIT ?;`, query, limit, |