在 Solr 中,NOT 和 -(减号)运算符有什么区别?

发布于 2024-10-10 21:35:26 字数 206 浏览 6 评论 0原文

在 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 技术交流群。

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

发布评论

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

评论(2

已下线请稍等 2024-10-17 21:35:26

为了扩展 Mauricio 的答案(因为 QueryParser 类是我读过的最令人困惑的代码之一),如果您查看第 145-152 行,您会看到:

  case MINUS:
    jj_consume_token(MINUS);
             ret = MOD_NOT;
    break;
  case NOT:
    jj_consume_token(NOT);
           ret = MOD_NOT;
    break;

所以它们都被视为 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:

  case MINUS:
    jj_consume_token(MINUS);
             ret = MOD_NOT;
    break;
  case NOT:
    jj_consume_token(NOT);
           ret = MOD_NOT;
    break;

So they are both considered MOD_NOTs.

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