Re: stopwords in solr

2012-11-28 Thread
yep,lt is a bad idea to eliminate stopword during indexing,may be u can eliminate stopword during querying,That is flexible 2012/11/28 Walter Underwood wun...@wunderwood.org Eliminating stopwords is generally a bad idea. It means you cannot search for vitamin a.

Re: stopwords in solr

2012-11-27 Thread
justt no stopwords are considered in that case 2012/11/28 Joe Zhang smartag...@gmail.com t no stopwords are considered in this case

Re: Anyone using mmseg analyzer in solr multi core?

2012-10-09 Thread
MMSeg is better than ikanalyzer? is there anyone compare those open source Chinese word analyzers? which one is better overall? 2012/10/9 Peter Keegan peterlkee...@gmail.com We're using MMSeg with Lucene, but not Solr. Since each SolrCore is independent, I'm not sure how you can avoid each

Re: how to boost query term after tokenizer

2012-10-06 Thread
thank you . Hoss Tokenization is not a problem in english,but in some other languages like chinese, there are no space to seperate each term in article.Lt is a long string like this “AABCDAEFSABS”,in which “AA” and BCD ...represent a meaningful term ,so l want to boost some special and meaningful

how to boost query term after tokenizer

2012-09-28 Thread
if the query word is ABCD,then after being tokenized it is A BC D , l want to boost term BC ,so the query word is like this: A BC^10 D and phrase query ABCD . all query words users typing in will be processed like that automaticly. l guess l can custom a filter to do it ,but l don't know if it is

how to boost query term after tokenizer

2012-09-28 Thread
if the query word is ABCD,then after being tokenized it is A BC D , l want to boost term BC ,so the query word is like this: A BC^10 D and phrase query ABCD . all query words users typing in will be processed like that automaticly. l guess l can custom a filter to do it ,but l don't know if it is

Re: Boosting in query level the relevance based in content of any fields

2012-09-28 Thread
u can use boost function query 2012/9/29 Erick Erickson erickerick...@gmail.com How can Solr/Lucene distinguish between that which must be boosted and that which must not? There must be some rule here, what is it? Until one understands the rule, there's not much one can suggest... Best