使用 solr 建立索引

发布于 2024-11-29 10:55:19 字数 162 浏览 1 评论 0原文

我正在使用 solrj 来索引数据,我在 schema.xml 中创建了一些新字段,当我尝试通过 java 索引数据时,我必须使用所有新字段,如果我不使用这个新字段之一,我有一个异常 org.apache.solr.common.solreException 错误请求 我可以使用我选择的字段对数据建立索引吗?

I'm using solrj to index data, I have created some new field in schema.xml, when I try to index data by java I have to use all new fields, if I don't use one of this new field I have an exception org.apache.solr.common.solrexception bad request
Can I index Data with fields that I choose?

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

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

发布评论

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

评论(1

黎夕旧梦 2024-12-06 10:55:19

因为 schema.xml 中所有定义的字段都将属性“required”设置为“true”。
将属性设置为 false,每个文档就不再需要该字段。

Because all of your defined fields in schema.xml has set the attribute "required" as "true".
Set the attribute to false and the field is not longer necessary for each document.

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