Details
-
Task
-
Resolution: Won't Fix
-
Major
-
None
Description
We need to add documentation about how to search with FTS and later fetch keys, like we have in the Query documentation.
something like:
List<GetResult> result = cluster
|
.reactive()
|
.searchQuery("indexName", SearchQuery.docId("docid1", "docid2")) |
.flatMapMany(ReactiveSearchResult::rows)
|
.flatMap(row -> coll.reactive().get(row.id()))
|
.collectList()
|
.block();
|
FlatMapMany:
Attachments
Issue Links
- relates to
-
DOC-6993 GetResult()
- Closed