Full text search index with store flag, unable to retrieve data with sdk

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.

Thanks,

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.

Could you post your code sample?

Nothing really special about the code but here goes

SearchQueryResult result = myBucket.query(new SearchQuery("idx_giata_cities_custom_store", SearchQuery.matchPhrase("dead sea")));

for (SearchQueryRow hit : result.hits()) {
//do logic
}

So the SearchQueryRow object doesn’t have any reference to the data of the index, just the document id.
Object tree: http://i.imgur.com/GbG68Xf.png
Web ui result: http://i.imgur.com/84dWofc.png

Ok, try this:

SearchQueryResult result = myBucket.query(new SearchQuery("idx_giata_cities_custom_store",     SearchQuery.matchPhrase("dead sea")).fields("field1", "field2"));

for (SearchQueryRow hit : result.hits()) {
//do logic
}

Where field1 and field2 are the names of the fields you want returning.

1 Like

I totally missed the fields variable on SearchQuery, data is returned now, thanks a lot.

1 Like