我正在尝试将Azure邻近搜索与两个短语配合使用。有用。例如:
"unit test"~2 // returns all occurrences of unit and test within two words.
但是,如何在附近使用确切的短语?例如,我需要在故事的5个字以内找到“单元测试”的匹配项。以下内容不起作用:
""unit test" story"~5
另外"unit test story"~5
也没有返回正确的匹配项。
有什么主意吗?
谢谢。
答案 0 :(得分:0)
您可以将查询分为两部分
因此查询将变为search="unit test" AND "test story"~5
。