solr 同义词搜索
solr 同义词搜索
?
????? <analyzer type="index">
??????? <tokenizer mode="max-word"/>^M
??????? <filter ignoreCase="false" words="stopwords.txt"/>
??????? <filter mode="max-word"/>^M
??????? <filter synonyms="synonyms.txt" ignoreCase="true" expand="true"/>
??????? <filter ignoreCase="false" words="stopwords.txt"/>
??????? <filter type="textMaxWord" indexed="true" stored="true" termVectors="true"/>
……
==========================schema.xml END=================================================
?
==========================conf/synonyms.txt START=================================================
# Some synonym groups specific to this example
GB,gib,gigabyte,gigabytes
MB,mib,megabyte,megabytes
Television, Televisions, TV, TVs
中国,美国,德国,法国
==========================conf/synonyms.txt END=================================================
2)使用
搜索title:中国? 结果包括美国、中国的结果都会出现
?
引自:http://hi.baidu.com/liwei_8/blog/item/6e0197dfd376700a63279886.html
1 楼 zha_zi 2011-10-09 这个不错,以前没有发现过solr有这个功能