SEARCH
TOOLBOX
LANGUAGES
Solr

Solr

From Chaehyun

(Difference between revisions)
Jump to: navigation, search
Line 39: Line 39:
}
}
</pre>
</pre>
 +
 +
* 가격으로 boosting하기
 +
** http://wiki.apache.org/solr/FunctionQuery#product
 +
** http://localhost:8983/solr/select?defType=dismax&qf=title&q=revised&fl
 +
=*,score&bf=product(sold)

Revision as of 01:33, 27 June 2012

  • 내가 만든 lib 포함
    • solr3.6/example/work/Jetty_0_0_0_0_8983_solr.war__solr__k1kf17/webapp/WEB-INF/lib
  • schema.xml
 <fieldType name="text_general" class="solr.TextField" positionIncrementGap="100">
      <analyzer type="index">
        <!--<tokenizer class="solr.StandardTokenizerFactory"/>-->
        <tokenizer class="org.apache.lucene.analysis.kr.KoreanTokenizerFactory"/>
        <filter class="org.apache.lucene.analysis.kr.KoreanFilterFactory" bigrammable="true" hasOrigin="true" />
        <filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords.txt" enablePositionIncrements="true" />
        <!-- in this example, we will only use synonyms at query time
        <filter class="solr.SynonymFilterFactory" synonyms="index_synonyms.txt" ignoreCase="true" expand="false"/>
        -->
        <filter class="solr.LowerCaseFilterFactory"/>
      </analyzer>
      <analyzer type="query">
      <!--
        <tokenizer class="solr.StandardTokenizerFactory"/>
        -->
        <tokenizer class="org.apache.lucene.analysis.kr.KoreanTokenizerFactory"/>
        <filter class="org.apache.lucene.analysis.kr.KoreanFilterFactory" bigrammable="true" hasOrigin="true" />
        <filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords.txt" enablePositionIncrements="true" />
        <filter class="solr.SynonymFilterFactory" synonyms="synonyms.txt" ignoreCase="true" expand="true"/>
        <filter class="solr.LowerCaseFilterFactory"/>
      </analyzer>
    </fieldType>
  • parameter 전다달
@Override
	public void init(Map<String,String> args){
		super.init( args );
		String v = args.get("whitePattern");
		if( v != null ) {
			setWhitePattern(v);
		}
	}

=*,score&bf=product(sold)

Retrieved from "http://chaehyun.kr/w/Solr"