在 Solr 中,NOT 和 -(减号)运算符有什么区别?
在 Solr 中,NOT 和 -(减号)运算符之间有区别吗?如果是这样,那是什么?
Solr 文档引用了 Lucene 查询解析器语法,对此很模糊事情。这两个运算符的功能似乎相同,但尚不清楚。
In Solr, is there a difference between the NOT and - (minus) operators? If so, what is it?
Solr documentation references the Lucene Query Parser Syntax, and it is vague on this matter. The two operators seem to function the same way, but it's not clear.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为了扩展 Mauricio 的答案(因为 QueryParser 类是我读过的最令人困惑的代码之一),如果您查看第 145-152 行,您会看到:
所以它们都被视为
MOD_NOT
。To expand on Mauricio's answer (because the QueryParser class is some of the most confusing code I've ever read) if you look at lines 145-152 you'll see:
So they are both considered
MOD_NOT
s.Lucene QueryParser 代码表示它们是等效的。
The Lucene QueryParser code says they're equivalent.