Hi,All

I would like to execute query as below.

field1:someword AND field2:★

But,It seems that the query as below is executed.

field1:someword

I guess that "solr.JapanesePartOfSpeechStopFilterFactory" Filter
excepted the word ★ from indexing target and as a result
the query "AND field:★" is exclude from the query 
"field1:someword AND field2:★".

I would like to execute the query "field1:someword AND field2:★".
How do I solve this?

Current schema.xml is as below.

  <fieldType name="text_ja" class="solr.TextField"
autoGeneratePhraseQueries="false" positionIncrementGap="100">
    <analyzer>
      <tokenizer class="solr.JapaneseTokenizerFactory" mode="search" 
discardPunctuation="false"  />
      <filter class="solr.JapaneseBaseFormFilterFactory"/>
      <filter class="solr.JapanesePartOfSpeechStopFilterFactory"
tags="lang/stoptags_ja.txt"/>
      <filter class="solr.CJKWidthFilterFactory"/>
      <filter class="solr.StopFilterFactory" words="lang/stopwords_ja.txt"
ignoreCase="true"/>
      <filter class="solr.JapaneseKatakanaStemFilterFactory"
minimumLength="4"/>
      <filter class="solr.LowerCaseFilterFactory"/>
    </analyzer>
  </fieldType>



--
View this message in context: 
http://lucene.472066.n3.nabble.com/JapanesePartOfSpeechStopFilterFactory-tp4321775.html
Sent from the Solr - User mailing list archive at Nabble.com.

Reply via email to