Guides / Managing results / Refine results / Sorting results

Search in a replica index

A replica index is a copy of your primary index that sorts results in alternative ways. For instance, on an ecommerce site, you might want to sort search results by default from cheapest to most expensive. You also offer a drop-down menu to let users sort from most expensive to cheapest.

If you’re using InstantSearch, use the sort-by widget to let users choose their sorting strategy.

Create replica indices

Let users sort results in various ways by creating a replica for each sorting strategy. That sorting strategy might order results by price, date, relevance, or any other criteria you provide.

Switch index as required

When users change the sorting strategy, ensure you switch to the appropriate index (primary or replica).

1
2
3
4
5
6
7
8
// 1. Change the sort dynamically based on the UI events
$sortByPrice = false;

// 2. Get the index name based on sortByPrice
$indexName = $sortByPrice ? 'products_price_desc' : 'products';

// 3. Search on dynamic index name (primary or replica)
$client->initIndex($indexName)->search('phone');
Did you find this page helpful?