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
11
12
13
14
15
16
import com.algolia.client.api.SearchClient
import com.algolia.client.extensions.*
val client = SearchClient(appId = "ALGOLIA_APPLICATION_ID", apiKey = "ALGOLIA_API_KEY")
var response = client.search(
searchMethodParams = SearchMethodParams(
requests = listOf(
SearchForHits(
indexName = "ALGOLIA_INDEX_NAME",
query = "<YOUR_QUERY>",
hitsPerPage = 50,
),
),
),
)
Did you find this page helpful?