Search Improvements
Search improvements
One of the heaviest and least performing operations in a store's navigation is its search. To improve the experience, we can also optimize the search for data and make it more efficient, in this sense two points must be observed: the SKUs and the price
Activity
-
To optimize the search context, add the
contextproperty to the search template in thestore/blocks/search.jsoncfile:// store / blocks / search.jsonc { "store.search": { + "props": { + "context": {} +}, "blocks": ["search-result-layout # search"] }, ... } -
To guarantee reduction of loaded results and, therefore, reduce the volume of results. It is possible to control that only the first available SKU is returned, for this, add
skusFiltertocontextasFIRST_AVAILABLE:{ "store.search": { "props": { "context": { + "skusFilter": "FIRST_AVAILABLE" } }, "blocks": ["search-result-layout # search"] }, } -
To make prices more cacheable and avoid simulating them for each search result obtained, we can also choose
skipassimulationBehavior:{ "store.search": { "props": { "context": { "skusFilter": "FIRST_AVAILABLE" + "simulationBehavior": "skip" } }, "blocks": ["search-result-layout # search"] }, }
Any questions?
See the answersheet for this step or check our [office hours] on the VTEX Developers channel(https://www.youtube.com/c/VTEXDevelopers)
Help us make this content better!
VTEX IO courses are open source. If you see something wrong, you can open a pull request!
Make a contribution
Updated 6 months ago
