当 solr 在字段中输入一些意想不到的值时,我遇到了问题。
在 schema.xml
<field name="country_ids" type="string" multiValued="true" stored="true" indexed="true" />
在媒体-jdbc.xml
<field column="country_ids" splitBy="\|" />
并且查询为此字段返回NULL或2|3|8|9|3 。(所有查询都很大并且运行良好)
当我在浏览器中查询时。
该字段具有奇怪的值:
<arr name="country_ids">
<str>[B@6ad21538</str>
</arr>
我错过了什么?
Solr 3.5 版