0

我有一个关于 solr 查询的问题,它有两个多值字段。流它是模式的一部分:

<field name="attribute" type="text" indexed="true" stored="true" multiValued="true"/>
<field name="locale" type="text" indexed="true" stored="true" multiValued="true"/>

它从 xml 读取数据:

  <docs>
    <doc>
        <id>01000</id>
        <name>product1</name>
        <price>102.5</price>        
        <attributes name="description">
          <str attribute="this is english description" locale="en_US" />
          <str attribute="this is chinese description" locale="zh_CN" />
        </attributes>
    </doc>
  </docs>

问题是查询条件“q=attribute:english AND locale:en_US”或“q=attribute:english AND locale:zh_CN”可以返回此文档。

我希望只有当条件是“q=attribute:english AND locale:en_US”或“q=attribute:chinese AND locale:zh_CN”时才能返回文档,我该怎么做?

谢谢!

4

1 回答 1

1

Christian Lendel 建议的选项可行,另一个选项是加入属性语言环境选项并将其索引为一个字符串:“en_US 这是英语描述”。然后你可以查询是这样的:

q=attribute:(english en_US)

解决方案可能更简单或更复杂,取决于您想要实现什么。

于 2012-09-12T11:23:41.807 回答