SOLR 字段需要满足哪些条件才能进行分面范围查询?
id org.apache.solr.common.SolrException 的 facet.range 期间出现异常:无法在字段上范围范围:id{type=string,properties=indexed,stored,omitNorms,omitTermFreqAndPositions,sortMissingLast,required, required=true}
这是当我尝试对文档的 ID 字段执行构面范围时遇到的错误。在模式中定义这个字段方面我做错了什么?我是否违反了构面范围查询资格的任何规则?
Exception during facet.range of id org.apache.solr.common.SolrException: Unable to range facet on field:id{type=string,properties=indexed,stored,omitNorms,omitTermFreqAndPositions,sortMissingLast,required, required=true}
This is the error I'm encountering when i try to do a facet range over ID field of my document. What am I doing wrong here in terms of defining this field in the schema? Have i violated any rules for eligibility for facet range query?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用的是facet.range选项(Solr 3.1中的新功能),文档说“可以在任何日期字段或任何支持范围查询的数字字段上使用范围分面功能”,但您的字段类型是字符串。
If you're using the facet.range option (new in Solr 3.1), the docs say "one can use the Range Faceting feature on any date field or any numeric field that supports range queries" but your field type is a string.