Hi all, I have a set of ~70 docs that I am indexing with Bleve (which is using the boltdb store by default). Indexing step works fine but when I do index.Open(indexPath), it takes forever and never returns anything.
Indexing and search operations are happening at two different times.
Hi!
I have a quick question regarding the initialization/use of the bleve.Index
. From the docs I see I can create it using the bleve.New
or open it with bleve.Open
(and others too). My question is if I should use this similar to a database/sql.DB
, which can be reused and stored as it has a pool of connections and it's thread safe, or I should use the bleve.Open
each time I want to do an operation and only the bleve.New
to create the index?
Thanks you!
search.DocumentMatch
that actually contains the result of the search. strangely, however, the fields are empty, more precisely the resulting is a map[string]interface{}=nil. If I run the same search using bleve's cli (and not the Go library) I am able to display all the Fields.