showPerformanceDetails parameter returns per-stage timing information so you can pinpoint bottlenecks without guesswork.
How it works
SetshowPerformanceDetails to true in any search request. Meilisearch will include a performanceDetails object in the response, breaking down how much time each stage of the search pipeline consumed.
This parameter is supported on all search routes:
POST /indexes/{indexUid}/searchGET /indexes/{indexUid}/searchPOST /multi-searchPOST /indexes/{indexUid}/similarGET /indexes/{indexUid}/similar
Basic usage
AddshowPerformanceDetails to a standard search request:
performanceDetails object:
Understanding performance stages
Each key inperformanceDetails represents a stage of the search pipeline. Stage names are hierarchical, using > as a separator (e.g., search > keyword ranking).
Top-level stages
Search sub-stages
These appear as children of thesearch stage. Not all stages appear in every query; Meilisearch only reports stages that were actually executed.
Federated search stages
When usingshowPerformanceDetails at the federation level, you see these stages instead:
Multiple occurrences of the same stage (e.g., multiple
search > keyword ranking in a federated query) are automatically accumulated into a single total duration.Multi-search
In multi-search requests, setshowPerformanceDetails on each individual query that you want to profile:
performanceDetails, letting you compare timing across indexes and queries.
Federated search
For federated multi-search, setshowPerformanceDetails in the federation object to get timing details for the combined search:
Similar documents
The similar documents endpoint also supportsshowPerformanceDetails:
Practical tips
Identify the bottleneck
Look for the stage with the highest duration. Common patterns:- High
wait in queue: your instance is overloaded with concurrent searches. Scale your hardware or reduce query volume. - High
search > evaluate filter: complex filters expressions or too many filterable attributes. Use granular filterable attributes to disable unused filter features. - High
search > evaluate query: complex query containing a lot of words or matching a lot of synonyms, generating a complex query tree that is expensive to evaluate. Add stop words, reduce synonyms cardinality. - High
search > keyword ranking: the query necessitates a lot of iterations in the ranking rules to retrieve the requested amount of documents, reduce the offset and limit parameters, limit searchable attributes, or lowermaxTotalHits. - High
search > embed query: your embedder is slow. Consider switching to a faster model, using a local embedder for search with composite embedders, or caching embeddings. - High
search > facet distribution: too many faceted attributes or highmaxValuesPerFacet. Lower it to the number of facet values you actually display. - High
search > format: largeattributesToRetrieve,attributesToHighlight, orattributesToCrop. Reduce to only the fields your UI needs. - High
federating results > wait for remote results: network latency to remote instances. Check network connectivity or colocate instances.
Compare before and after
UseshowPerformanceDetails before and after configuration changes (adding stop words, adjusting searchable attributes, modifying the search cutoff) to measure the impact of each optimization.
Disable in production
Collecting performance details adds a small amount of overhead to each search request. Use this parameter for debugging and profiling, then remove it from production queries.Performance tuning
Optimize search speed and relevancy for large datasets
Ranking pipeline
Understand how Meilisearch ranks search results
Configure search cutoff
Set time limits to guarantee consistent response times
Search API reference
Full API reference for the search endpoint