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.

Use the helper searchForHits or searchForFacets to get the results in a more convenient format, if you already know the return type you want.

Usage

Required ACL: search
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import algoliasearch.api.SearchClient
import algoliasearch.config.*
import algoliasearch.extension.SearchClientExtensions

val client = SearchClient(appId = "ALGOLIA_APPLICATION_ID", apiKey = "ALGOLIA_API_KEY")

val response = Await.result(
  client.search(
    searchMethodParams = SearchMethodParams(
      requests = Seq(
        SearchForHits(
          indexName = "ALGOLIA_INDEX_NAME",
          query = Some("<YOUR_QUERY>"),
          hitsPerPage = Some(50)
        )
      )
    )
  ),
  Duration(100, "sec")
)
Did you find this page helpful?
Scala API clients v2