Solr
From Chaehyun
(Difference between revisions)
Line 26: | Line 26: | ||
</analyzer> | </analyzer> | ||
</fieldType> | </fieldType> | ||
+ | </pre> | ||
+ | |||
+ | * parameter 전다달 | ||
+ | <pre> | ||
+ | @Override | ||
+ | public void init(Map<String,String> args){ | ||
+ | super.init( args ); | ||
+ | String v = args.get("whitePattern"); | ||
+ | if( v != null ) { | ||
+ | setWhitePattern(v); | ||
+ | } | ||
+ | } | ||
</pre> | </pre> |
Revision as of 02:06, 26 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); } }