Note that there are some explanatory texts on larger screens.

plurals
  1. PORequestHandler with edismax ignore Synonyms and Stopwords
    text
    copied!<p>I have the following query defined in my <code>solrconfig.xml</code>:</p> <pre><code> &lt;requestHandler name="/defaultSearch" class="solr.SearchHandler"&gt; &lt;!-- Adds filters to all queries--&gt; &lt;lst name="appends"&gt; &lt;str name="fq"&gt;-DELETED:true&lt;/str&gt; &lt;/lst&gt; &lt;lst name="defaults"&gt; &lt;!-- See http://wiki.apache.org/solr/DisMaxQParserPlugin --&gt; &lt;str name="defType"&gt;edismax&lt;/str&gt; &lt;str name="echoParams"&gt;explicit&lt;/str&gt; &lt;str name="df"&gt;text&lt;/str&gt; &lt;!-- As dismax is used, 0.00 = is pure dismax , 1.00 = sum --&gt; &lt;float name="tie"&gt;1.00&lt;/float&gt; &lt;!-- Query Fields - Search fileds with its height --&gt; &lt;str name="qf"&gt; DocumentDisplayName^10 DocumentName^9 DocumentContent^5 DocumentDescription^3 DocumentTAGS^8 &lt;/str&gt; &lt;!-- Phrase Field - frases fields used on quer as phrase &gt;&gt; "" --&gt; &lt;str name="pf"&gt; DocumentDisplayName^10 DocumentName^9 DocumentContent^5 DocumentDescription^3 DocumentTAGS^8 &lt;/str&gt; &lt;!-- See http://wiki.apache.org/solr/DisMaxQParserPlugin --&gt; &lt;str name="mm"&gt; 2&amp;lt;-1 5&amp;lt;-2 6&amp;lt;90% &lt;/str&gt; &lt;!-- Phrase whitespace ignore --&gt; &lt;int name="ps"&gt;10&lt;/int&gt; &lt;/lst&gt; &lt;/requestHandler&gt; </code></pre> <p>It works pretty fine, but, it just ignore my stopwords and synonyms files.</p> <p>I can't understand what is happening, and have no idea on how to fix it. Any help?</p> <hr> <h1>Edit</h1> <p><a href="https://gist.github.com/caarlos0/4ad53583fb2b30ef0bec" rel="nofollow">Query used, result (with debug=true) and the interesting part of schema.xml</a></p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload