Reputation: 3297
I am currently building a fuzzy search extension for magento that gets its results from an external server.
The problem I am having is that after combining the external search results with the results from the Magento database select, I can't find a solution to sort/order the products in the collection object based on relevance values from an xml file. If anyone could help me with this I would be very pleased =)
Upvotes: 0
Views: 869
Reputation: 1478
I am currently building a fuzzy search extension for magento that gets its results from an external server.
You can look a bit more into this, because Magento search using Solr or Elasticsearch does the same thing...
How Magento search works:
catalogsearch_query
and catalogsearch_result
)catalogsearch_result
); here you can find the relevance fieldYour question shows no research whatsoever regarding the Magento standard search extension.
Upvotes: 3