需要对 schema.xml 和 solrconfig.xml 进行更改
我使用 solrj 添加一些字段。我需要在 solrconfig.xml 和 schema.xml 中进行哪些更改?
我是 solr 新手,希望得到一些帮助
I'm adding a few fields using solrj. What changes need i make in the solrconfig.xml and schema.xml?
I'm new to solr and i'd love some help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
除非您要更改 solr 实例的行为方式,否则您不需要更改 solrconfig.xml。添加字段只需要 schema.xml 包含如下行:
You shouldn't need to change solrconfig.xml unless you are changing the way your solr instance behaves. Adding a field just requires that schema.xml include a line like:
值得注意的是,如果 solrconfig.xml 中的设置未规定使用单独的 schema.xml,那么它将默认使用托管架构文件。
Its worth noting that if your settings in solrconfig.xml do not prescribe using a separate schema.xml then it will default to using a managed-schema file.