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

index.Search(new Query("")
{
    PercentileComputation = false;
});
index.Search(new Query("")
{
    PercentileComputation = false;
});
I