Solr:在布尔字段上使用过滤查询?

时间:2013-04-01 16:47:59

标签: solr

我有一个索引的,存储的布尔字段,我试图用作过滤器:

<field name="is_instrumental" type="boolean" indexed="true" stored="true" />

但是,当我尝试将其用作fq参数时,查询返回零结果:

select?q=*:*&fq=is_instrumental:true&wt=xml&indent=true

<response>
  <lst name="responseHeader">
    <int name="status">0</int>
    <int name="QTime">0</int>
    <lst name="params">
      <str name="indent">true</str>
      <str name="q">*:*</str>
      <str name="wt">xml</str>
      <str name="fq">is_instrumental:true</str>
    </lst>
  </lst>
  <result name="response" numFound="0" start="0"></result>
</response>

我已经尝试了我能想到的每一个组合(真,假,1,0,TRUE,FALSE,也在引号中),无论我尝试什么它都不会返回任何东西。其他字段(整数或字符串)上的过滤器工作得很好。使用Solr 4.1。

我错过了什么?

编辑:

solrconfig.xml:http://pastebin.com/kGWhQBma

schema.xml:http://pastebin.com/uqnYuuHR

1 个答案:

答案 0 :(得分:2)

您的查询语法&fq=is_instrumental:true应该有效。

我的猜测是,您正在使用/ select请求处理程序的自定义版本,该处理程序正在实现自定义查询解析器,如eDisMax (Extended Dismax) Parser。可能已设置&uf参数以阻止现场搜索。您可以检查solrconfig.xml并查看如何定义<requestHandler name="/select" class="solr.SearchHandler">配置的默认值吗?