我现在在这个问题上存货好几天了。我们正在将系统升级到solr 5.3,在对旧模式做一些小改动后,一切正常,直到我们决定尝试这个新的fieldType solr.DateRangeField ,如果我们使用这个字段类型SOLR不再工作
请参阅下文,了解我们如何实施它。我无法解决这个问题,需要帮助。
谢谢
<field name="appointments" type="rdates" indexed="true" stored="true" />
<fieldType name="rdates" class="solr.DateRangeField" precisionStep="6" positionIncrementGap="0" multiValued="true"/>
答案 0 :(得分:1)
我在solr irc
的帮助下解决了我的问题我只是在我的类型声明中删除了precisionStep和positionIncrementGap属性,然后重新启动solr。请参阅下面的新类型声明。
<fieldType name="rdates" class="solr.DateRangeField" multiValued="true"/>