dismax 查询语法

发布于 2024-10-14 16:26:56 字数 158 浏览 2 评论 0原文

标准请求处理程序的查询如下 字段 1:(关键字 1 或关键字 2) 或 字段 2:(关键字 1 或关键字 2) 或 字段 3:(关键字 1 或关键字 2) AND 字段 4:(关键字 3 或关键字 4) 和 字段 5:(关键字 5)

如何为 dismax 请求处理程序编写上述相同的查询

The query for standard request handler is as follows
field1:(keyword1 OR keyword2) OR field2:(keyword1 OR keyword2) OR field3:(keyword1 OR keyword2) AND field4:(keyword3 OR keyword4) AND field5:(keyword5)

How the same above query can be written for dismax request handler

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

來不及說愛妳 2024-10-21 16:26:56

dismax中共有三种短语
-强制(单词前面有(+)标记:表示关键字必须同时存在于一个文档(一个搜索结果中)
-prohibited(单词前面带有(-)标记:表示该关键字不得出现​​在搜索结果中
-and 可选,这是默认值,前面不带任何标记:表示至少在搜索结果中的关键字之一

,用于过滤针对字段的查询,您可以使用 (qf) 参数
qf=姓名 书名 作者 ISBN
或者
qf = 仅在名称字段中搜索的名称

There are three kinds of phrses in dismax
-mandatory (the word is preceded by (+) mark : means that keywords must be exists both in one document (in one search result)
-prohibited (the word is preceded by (-) mark : means that keywords must not be in the search result
-and optional which is the default and not preceded by any mark : means that one of the keywords at least in the search result

to filter query against fields you can use the (qf) parameter
qf=name title auther ISBN
or
qf = name to search only on name field

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文