Solr 1.4 - 空间搜索,缺少最后一个查询对象

发布于 2024-10-16 19:00:10 字数 1877 浏览 4 评论 0原文

最近我将 Solr 从 1.3 升级到 1.4,我对此感到很高兴。现在我遇到了一个奇怪的问题,我想看看你是否也有同样的问题或者我遗漏了一些东西。

我已经运行了一个查询,并在其中放入了一个带有纬度和经度的位置,因此我可以通过空间搜索来检索它(它已经可以工作)。如果我通过 ID 运行查询,我会使用架构信息检索此地点,纬度和经度是正确的。当我运行空间查询(使用地点的纬度和经度)时,在 xml 结果中我看不到我的地点。

XML 的位置:

<add>
<doc>
    <field name="id">PLC||77173</field>
    <field name="document_type">PLACE</field>
    <field name="document_type_content"><![CDATA[POI]]></field>
    <field name="latitude">45.07475</field>
    <field name="longitude">7.680215</field>
</doc>
</add>

好的,如果我要使用“id:PLC||77173”(主键)查询 solr,这里是 XML:

<?xml version="1.0" encoding="UTF-8"?> 
<response> 

<lst name="responseHeader"> 
 <int name="status">0</int> 
 <int name="QTime">139</int> 
 <lst name="params"> 
  <str name="indent">on</str> 
  <str name="start">0</str> 
  <str name="q">id:PLC||77173
</str> 
  <str name="rows">10</str> 
  <str name="version">2.2</str> 
 </lst> 
</lst> 
<result name="response" numFound="1" start="0"> 
 <doc> 
  <str name="document_type">PLACE</str> 
  <str name="document_type_content">POI</str> 
  <str name="id">PLC||77173</str> 
  <double name="latitude">45.07475</double> 
  <double name="longitude">7.680215</double> 
 </doc> 
</result> 
</response> 

现在,我要输入以下查询

qt=geo&lat=45.07475&long=7.680215&q=(document_type:PLACE)&radius=10&unit=km&wt=json

在我的 json/xml 中(只需从查询中删除 json)没有我的地点 (PLC||77173) 的踪迹。我不想粘贴 xml 响应,它太大了。

Recently i've upgraded my Solr from 1.3 to 1.4 and I'm happy for this. Now I faced a strange problem and I would like to see if you have the same problem or I'm missing something.

I've run a query and put in this a PLACE with latitude and longitude, thus i could retrieve this with a spatial search (which it already works). If I run a query via ID, I retrieve this PLACE with the schema info, latitude and longitude are correct. When I run a spatial query (with latitude and longitude of the PLACE), in the xml result I don't see my place.

XML's PLACE:

<add>
<doc>
    <field name="id">PLC||77173</field>
    <field name="document_type">PLACE</field>
    <field name="document_type_content"><![CDATA[POI]]></field>
    <field name="latitude">45.07475</field>
    <field name="longitude">7.680215</field>
</doc>
</add>

Ok, if I'm going to query solr with "id:PLC||77173" (primary key), here the XML:

<?xml version="1.0" encoding="UTF-8"?> 
<response> 

<lst name="responseHeader"> 
 <int name="status">0</int> 
 <int name="QTime">139</int> 
 <lst name="params"> 
  <str name="indent">on</str> 
  <str name="start">0</str> 
  <str name="q">id:PLC||77173
</str> 
  <str name="rows">10</str> 
  <str name="version">2.2</str> 
 </lst> 
</lst> 
<result name="response" numFound="1" start="0"> 
 <doc> 
  <str name="document_type">PLACE</str> 
  <str name="document_type_content">POI</str> 
  <str name="id">PLC||77173</str> 
  <double name="latitude">45.07475</double> 
  <double name="longitude">7.680215</double> 
 </doc> 
</result> 
</response> 

Now, I'm going to type the following query

qt=geo&lat=45.07475&long=7.680215&q=(document_type:PLACE)&radius=10&unit=km&wt=json

And in my json/xml (just erase json from the query) there's no trace of my PLACE (PLC||77173). I prefere don't paste the xml response, is too big.

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文