From b170aaa85621d280938dc39db04f8ddf89eab174 Mon Sep 17 00:00:00 2001 From: decentral1se Date: Thu, 11 May 2023 16:41:55 +0200 Subject: [PATCH] docs: more exp tips --- exp/README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/exp/README.md b/exp/README.md index 1de66be..2001384 100644 --- a/exp/README.md +++ b/exp/README.md @@ -2,8 +2,20 @@ > Experimental programs for prototyping outside of the main `gshmm` UI +## `bleve.go` + +Testbed for indexing & retrieval. + ``` go run bleve.go ``` You may need to `rm -rf *.bleve` to clean up previous index runs. + +You can install the CLI with: + +``` +go install github.com/blevesearch/bleve/v2/cmd/bleve@latest +``` + +And then do stuff like `bleve query test.bleve "enhanced"` 👍