Solr 空间搜索:“无法在多值字段上使用 FieldCache”

发布于 2024-11-29 10:19:02 字数 248 浏览 1 评论 0原文

我从 Solr 收到这条消息。

我的 schema.xml 上的相关行将位置字段设置为非多值字段,如下所示。

<field name="latlong_current" type="location" indexed="true" stored="false" omitNorms="true" multiValued="false" />

还有其他人使用空间搜索功能遇到过这个问题吗?

I'm getting this message from Solr.

The relevant line on my schema.xml puts the location field as a non multiValued Field as shown below.

<field name="latlong_current" type="location" indexed="true" stored="false" omitNorms="true" multiValued="false" />

Has anyone else run into this with the spatial search feature?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

雨轻弹 2024-12-06 10:19:02

我没有使用位置字段类型,但我希望确保对该类型的分析不会将其分解为多个标记。显然有一个用于存储地理编码的 LatLonType,“位置”是否设置为该值?

否则,Solr 人员在他们的邮件列表和 IRC 上都非常积极响应,如果您在这里没有得到想要的答案,请在那里尝试!

I haven't used location fieldtypes, but I would look to make sure the analysis on that type isn't breaking it into multiple tokens. Apparently there's a LatLonType for storing geocodes, is "location" set to that?

Otherwise, the Solr people are really responsive on their mailing list and on IRC, if you don't get the answer you want here, try there!

夕嗳→ 2024-12-06 10:19:02

如果您的 schema.xml 中有这些字段,请确保它们设置为 multiValued=false

<dynamicField name="*_coordinate"  type="tdouble" indexed="true"  stored="false" multiValued="false"/>
<dynamicField name="*_p" type="location" indexed="true" stored="true" multiValued="false"/>

If you have these fields in your schema.xml as you should, make sure they are set to multiValued=false

<dynamicField name="*_coordinate"  type="tdouble" indexed="true"  stored="false" multiValued="false"/>
<dynamicField name="*_p" type="location" indexed="true" stored="true" multiValued="false"/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文