数据类型在Solr中不起作用

时间:2017-02-21 20:35:48

标签: date solr cassandra

我想在solr中从Cassandra中获取包含日期类型的记录,以下是我的代码:

fd

但结果不包含已创建的字段。有谁能告诉我这是什么问题?非常感谢!

1 个答案:

答案 0 :(得分:1)

您将tdate数据类型定义为solr.TrieDoubleField。这就是为什么结果不包含artist_created数据。

将架构更改为:

<fieldType name="date" class="solr.TrieDateField" precisionStep="0" positionIncrementGap="0"/>
<field name="artist_created" type="date" indexed="false" stored="true"/>