Different search result is coming for the same single word
iRAM Search is returning different search result count for the same word with in quotes and same word in without quotes
Example: I think, in code logic might add some more condition for the keyword which contains quotes. Hence, We and our user early wants to know the condition (OR) the difference between of this one. Thank you. |
4 answers
The search without the quotes will perform a fuzzy search and therefore return more results. The search with the quotes will only return exact matches.
|
May we know, how the fuzzy search works? Kindly explain more technically.
|
May we know, how the fuzzy search works? Kindly explain more technically. The fuzzy search in RAM is implemented by Lucene (http://lucene.apache.org/java/) which uses the Levenshtein Distance, or Edit Distance algorithm (http://en.wikipedia.org/wiki/Levenshtein_distance). |
Basicly, it's trying to match terms that are close to your query that you would also probably be interested in seeing. For example, if you search for "download" it may return assets with similar terms such as "downloads", "downloading", "downloaded", etc.
|
Your answer
Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.