让我说我想查询字符串“这是第一个标题”,我希望它返回几乎相似的字符串,如下所示。
this is first title
this is second title
this is third title
QueryOptions
是否可以查询“几乎相似”的字符串?
答案 0 :(得分:1)
您可以搜索"this is" title
(用双引号括起“this is”将其视为短语),这应该适用于您的特定用例。
如果您在特定字段中搜索,请说“摘要”,则可以指定字段以缩小搜索范围,例如:summary:"this is" summary:title
另见这个问题的答案:GAE Full Text Search API phrase matching。 您可以使用'〜'运算符重写查询以包含复数,这是搜索类似文本的一种方式。