Kev*_*vin 15 language-agnostic algorithm search fuzzy-search autocomplete
我正在我的网络应用程序中实现搜索建议功能,并一直在查看现有的技术实现.
似乎大多数主要站点(亚马逊,Bing等)都以下列方式实现模糊搜索:
Tokenize search string in to terms
processingSearchStringSet = {}
For each term
if exact term is NOT in index
Get possible terms (fuzzyTerms) from levenshtein(term, 1 (or 2))
For each term in fuzzyTerms
if term is in index
processingSearchStringSet.intersect(stringsIndexedByTermsSet)
else
processingSearchStringSet.intersect(stringsIndexedByTermsSet)
Run Code Online (Sandbox Code Playgroud)
然后,结果集成员可能按度量(例如,术语顺序保留,绝对术语位置,搜索流行度)进行排序,并且在被传递回用户之前基于该排名和预定结果集大小来保留或消除.
另一方面,谷歌的实施与此有很大不同.
具体来说,它允许搜索字符串的组成条款中出现1个以上的错误.错误阈值似乎取决于字符串中感兴趣的术语的位置,尽管它永远不会超过7.
有趣的是:
N-gram也看不到正在使用:修改一个术语,使其不包含原始术语中存在的二元组,似乎不会影响结果.
这是一个说明我的发现的例子:
Example term: "Fiftyyyy shades of grey"
Amazon suggestions: none
(if the error count exceeds 1 on any term, the search fails)
Bing suggestions: none
(if the error count exceeds 2 on any term, the search fails)
Google suggestions: 10 (max)
(breaking the search would require 5 or more errors on any single term,
or multiple errors on multiple terms)
Run Code Online (Sandbox Code Playgroud)
我的问题是:什么类型的巫术在这里工作?他们只是使用具有巨大误差限额的Levenshtein搜索,还是使用我不知道的另一种技术?