如何在Lucene中的Queryparser中传递多个字段?

发布于 2024-11-09 08:08:10 字数 351 浏览 0 评论 0原文

我可以在 Lucene 的 Querparser 中传递多个索引字段吗? 我做了类似的事情

  QueryParser queryParser =  MultiFieldQueryParser.Parse(new[] { query }, new[] { "Name", "Description", "ExternalIdentifier", "OriginalFileName", "Text" }, new StandardAnalyzer());
  queryParser.setDefaultOperator(QueryParser.Operator.AND);

但它显示一些错误?我有点困惑有人可以帮我吗?

Can i pass multiple index fields in a Querparser in Lucene?
I have done something like this

  QueryParser queryParser =  MultiFieldQueryParser.Parse(new[] { query }, new[] { "Name", "Description", "ExternalIdentifier", "OriginalFileName", "Text" }, new StandardAnalyzer());
  queryParser.setDefaultOperator(QueryParser.Operator.AND);

But it shows some error? i am little bit confused can anybody give me a help?

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

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

发布评论

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

评论(1

浅黛梨妆こ 2024-11-16 08:08:10

文档用于特定重载您正在使用的 MultiFieldQueryParser.Parse 声明如下:

IllegalArgumentException -
如果查询、字段的长度,
和标志数组不同。

我怀疑您遇到此异常,因为您有一个查询和 5 个字段。如果您要使用此方法,则必须提供长度为 5 的查询数组。

可能想要使用不同的解析重载,它将采用单个查询但多个字段和标志。

The documentation for the specific overload of MultiFieldQueryParser.Parse that you are using states the following:

IllegalArgumentException -
if the length of the queries, fields,
and flags array differ.

I suspect you are getting this exception as you have one query and 5 fields. If this is the method that you want to use, you must provide an array of queries with a length of five.

You may want to use a different parse overload, which will take a single query but multiple fields and flags.

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