dismax 查询语法
标准请求处理程序的查询如下 字段 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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