Sep 20, 2024
Search multiple indices
Sends multiple search requests to one or more indices.
This can be useful in these cases:
- Different indices for different purposes, such as, one index for products, another one for marketing content.
- Multiple searches to the same index—for example, with different filters.
Usage
Required ACL:
search
Copy
1
2
3
4
5
6
7
8
9
10
import com.algolia.api.SearchClient;
import com.algolia.model.search.*;
SearchClient client = new SearchClient("ALGOLIA_APPLICATION_ID", "ALGOLIA_API_KEY");
client.search(
new SearchMethodParams()
.setRequests(Arrays.asList(new SearchForHits().setIndexName("ALGOLIA_INDEX_NAME").setQuery("<YOUR_QUERY>").setHitsPerPage(50))),
Hit.class
);
Did you find this page helpful?