Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>maybe in your schema.xml of your /usr/share/solr/conf there is missing a type integer?</p> <p>here is mine as example:</p> <pre><code>&lt;schema name="sunspot" version="1.0"&gt; &lt;types&gt; &lt;!-- field type definitions. The "name" attribute is just a label to be used by field definitions. The "class" attribute and any other attributes determine the real behavior of the fieldType. Class names starting with "solr" refer to java classes in the org.apache.solr.analysis package. --&gt; &lt;!-- *** This fieldType is used by Sunspot! *** --&gt; &lt;fieldType name="string" class="solr.StrField" omitNorms="true"/&gt; &lt;!-- *** This fieldType is used by Sunspot! *** --&gt; &lt;fieldType name="tdouble" class="solr.TrieDoubleField" omitNorms="true"/&gt; &lt;!-- *** This fieldType is used by Sunspot! *** --&gt; &lt;fieldType name="rand" class="solr.RandomSortField" omitNorms="true"/&gt; &lt;!-- *** This fieldType is used by Sunspot! *** --&gt; &lt;fieldType name="text" class="solr.TextField" omitNorms="false"&gt; &lt;analyzer&gt; &lt;tokenizer class="solr.StandardTokenizerFactory"/&gt; &lt;filter class="solr.StandardFilterFactory"/&gt; &lt;filter class="solr.LowerCaseFilterFactory"/&gt; &lt;/analyzer&gt; &lt;/fieldType&gt; &lt;!-- *** This fieldType is used by Sunspot! *** --&gt; &lt;fieldType name="boolean" class="solr.BoolField" omitNorms="true"/&gt; &lt;!-- *** This fieldType is used by Sunspot! *** --&gt; &lt;fieldType name="date" class="solr.DateField" omitNorms="true"/&gt; &lt;!-- *** This fieldType is used by Sunspot! *** --&gt; &lt;fieldType name="sdouble" class="solr.SortableDoubleField" omitNorms="true"/&gt; &lt;!-- *** This fieldType is used by Sunspot! *** --&gt; &lt;fieldType name="sfloat" class="solr.SortableFloatField" omitNorms="true"/&gt; &lt;!-- *** This fieldType is used by Sunspot! *** --&gt; &lt;fieldType name="sint" class="solr.SortableIntField" omitNorms="true"/&gt; &lt;!-- *** This fieldType is used by Sunspot! *** --&gt; &lt;fieldType name="slong" class="solr.SortableLongField" omitNorms="true"/&gt; &lt;!-- *** This fieldType is used by Sunspot! *** --&gt; &lt;fieldType name="tint" class="solr.TrieIntField" omitNorms="true"/&gt; &lt;!-- *** This fieldType is used by Sunspot! *** --&gt; &lt;fieldType name="tfloat" class="solr.TrieFloatField" omitNorms="true"/&gt; &lt;!-- *** This fieldType is used by Sunspot! *** --&gt; &lt;fieldType name="tdate" class="solr.TrieDateField" omitNorms="true"/&gt; &lt;/types&gt; </code></pre>
 

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