I have a problem with solr search: 
I have keyword, example: "apache solr reference", I index for "apache",
"solr", "reference".
when I search with the list keywords below:
- apache solr reference -> OK
- apache -> OK
- solr -> OK
- the same.

But when the first keyword is not index, and other keywords are index, solr
can not query it.
(example I search with: apacheee solr reference).

Anyone can help me to solr this problem.

<below is the configuration for indexing and querying in schema.xml>

<fieldtype name="text_general_2" class="solr.TextField"
positionIncrementGap="1000">
          <analyzer>
                <tokenizer class="solr.ICUTokenizerFactory"/>
                  <filter class="solr.StandardTokenizerFactory" />
                  <filter class="solr.ICUFoldingFilterFactory"/>
                  <filter class="solr.SynonymFilterFactory" 
synonyms="stopwords.txt"
ignoreCase="true" expand="false"/>
                  <filter class="solr.StopFilterFactory" ignoreCase="true"
words="stopwords.txt" enablePositionIncrements="true"/>
                  <filter class="solr.CJKWidthFilterFactory"/>
                  <filter class="solr.CJKBigramFilterFactory"/>
          </analyzer>
</fieldtype>



--
View this message in context: 
http://lucene.472066.n3.nabble.com/Solr-search-in-case-the-first-keyword-are-not-index-tp4097699.html
Sent from the Solr - User mailing list archive at Nabble.com.

Reply via email to