I have a request from a client who wants to be able to prioritize their product SKU in the search results. The SKU is in the defined key CF_TITLE. I'm not very good with verity and the documentation isn't great out there. I managed to modify it to find only the CF_TITLE but it affected the rest of the results. I'm also not sure the current criteria is correct either since it doesn't really follow any example syntax I've found.
So how can I modify the criteria so we can prioritize an exact match for "CF_TITLE" in the results without effecting the rest of the results?
This is their current search tag:
<cfsearch
collection="company"
name="SearchResults"
criteria="(<NOT> CF_KEY <MATCHES> #SearchKeywords#)
AND (#SearchKeywords#)"
status="Info">
Do the SKUs have a predictable format? If so then you could perhaps change the form of the criteria that's passed to verity if an SKU is detected. For example if your SKUs all began with 3 letters followed by 3 numbers:
So if an SKU was detected verity would search just the title field. Otherwise it would do a normal search on the whole index. You'd probably need to vary the above according to how strictly things need to match, but you get the idea.