我在我的 solr schema.xml 中有这个字段
<field name="geocode"
type="location"
indexed="true"
stored="true"
multiValued="false" />
我想知道,我的 c# 类中需要什么类型的对象?
我正在尝试这样做,但 solr 会引发错误。
[SolrField("geocode")]
public System.Drawing.PointF GeoCode { get; set; }
SEVERE: java.lang.NumberFormatException: For input string: "{X=0"
at sun.misc.FloatingDecimal.readJavaFormatString(Unknown Source)
at java.lang.Double.parseDouble(Unknown Source)
at org.apache.lucene.spatial.DistanceUtils.parsePointDouble(DistanceUtil
s.java:410)
任何人都可以帮忙吗?