If I create and index, index documents, keep it open and search it, the documents with their data are returned.
But if I open a previously closed index and perform the same search, only the document id's are returned.
--
In bleve, this is solved by setting the "Fields" property on a search request which is a []string of the field names you want returned, or all fields with req.Fields = []string{"*"}
--
Is there an equivalent in Bluge?
Thanks in advance