From 65fd7bc9218f1bb0b4a5dd8d8141239b3211e1cd Mon Sep 17 00:00:00 2001 From: "Gabriel A. Giovanini" Date: Thu, 25 Apr 2024 22:31:01 +0200 Subject: ref: Use storage instead of memory With async search we can afford waiting a bit more it to load without making the ui sluggish. --- cmd/ui/ui.go | 13 ++----------- db/db.go | 2 +- 2 files changed, 3 insertions(+), 12 deletions(-) diff --git a/cmd/ui/ui.go b/cmd/ui/ui.go index 50b8543..a12a666 100644 --- a/cmd/ui/ui.go +++ b/cmd/ui/ui.go @@ -13,10 +13,6 @@ import ( "git.gabrielgio.me/dict/db" ) -const ( - memory = ":memory:" -) - var UICommand = &cli.Command{ Name: "ui", Usage: "interactive dictionary", @@ -34,12 +30,7 @@ var UICommand = &cli.Command{ } func Run(ctx context.Context, name string) error { - db, err := db.Open(memory) - if err != nil { - return err - } - - err = db.Restore(ctx, name) + db, err := db.Open(name) if err != nil { return err } @@ -61,7 +52,7 @@ func Run(ctx context.Context, name string) error { search = v go func(v string) { - words, err := db.SelectDict(ctx, v, 100) + words, err := db.SelectDict(ctx, v, 20) if err != nil { return } diff --git a/db/db.go b/db/db.go index c3699d7..24c2a31 100644 --- a/db/db.go +++ b/db/db.go @@ -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, -- cgit v1.2.3