I know it’s all still experimental but I’m learning FTS right now and it looks like when using an index with ‘store’ flag (the data of a field or a document gets written to the index) and then retrieving a result via bucket.Query() (i.e. SearchQueryResult) there is no way to fetch the data itself because the SearchQueryRow object have no reference to the data. Any idea if I can fetch the data using the sdk? Maybe it will be available in the future?
I can see the data properly in the administration web ui.
I’m not up to speed with the Java SDK’s implementation of FTS, but in Python’s SDK you have to explicitly state which stored fields you want returned in the initial search call.