LibreCat / Dancer-Plugin-Catmandu-OAI

OAI-PMH provider backed by a searchable Catmandu::Store
http://librecat.org
2 stars 1 forks source link

Default search params #2

Closed nicolasfranck closed 10 years ago

nicolasfranck commented 10 years ago

Changes:

default_search_params:
   fq:
        - "(*:* AND NOT is_deleted:true)"
        - "is_oai:true"
   #cql is translated into a lucene query, so make sure Solr does not resort to a preconfigured query parser other than lucene
  defType: "lucene"
  facet: "false"
  spellcheck: "false" 

Question: This plugin often uses Lucene queries, but Solr can be preconfigured to use for example "dismax". Should we hardcode "defType" to "lucene"?