Zhexuan Liu
01/27/2025, 9:44 AMRefinementList
control, so basically we have a setup like this
<InstantSearch searchClient={adaptedClientForTypesense}>
<RefinementList1 />
<RefinementList2 />
<RefinementList3 />
</InstantSearch>
Each RefinementList is a component connected to refinementList via connectRefinementList
method.
It works fine except that we are seeing 3 requests upon loading the page, it seems it sends request for each refinement, and one of the request contains all refinements (facets) we want.
For algolia, it only sends 1 request containing all refinements, and if we want to achieve the same behavior, what should we do?Jason Bosco
01/27/2025, 5:45 PM