Skip to main content
  • Type: boolean
  • Default: true
  • Scope: search
The percentileComputation parameter controls whether the query’s processing time is included in the ninetieth and ninety-ninth percentiles, as available in the Algolia dashboard.

Example

Current API clients

var response = await client.SearchSingleIndexAsync<Hit>(
  "ALGOLIA_INDEX_NAME",
  new SearchParams(new SearchParamsObject { Query = "query", PercentileComputation = false })
);
index.Search(new Query("")
{
    PercentileComputation = false;
});