在我的 SOLR 中,我保留重复的事件。
因此,事件 A 在 11 日有重复 12 日和 29 日
事件 b 在 2 日和 15 日有重复
事件 c 在 12 日和 29日有重复
我想获取按日期排序的事件,我希望它按集合中的第一个日期排序。
预期结果:
Event B
A
C
架构条目是
<fieldType name="tdate" class="solr.TrieDateField" omitNorms="true" precisionStep="6" positionIncrementGap="0"/>
<field name="date_start" type="tdate" indexed="true" stored="true" required="false" multiValued="true"/>
我会使用什么 URL?