/
- Original Message
> From: rahul
> To: solr-user@lucene.apache.org
> Sent: Thu, March 17, 2011 10:12:27 AM
> Subject: Re: Solr Autosuggest help
>
> hi,
>
> We have found that 'EnglishPorterFilterFactory' causes that issue. I believe
> that is used
hi,
We have found that 'EnglishPorterFilterFactory' causes that issue. I believe
that is used for stemming words. Once we commented that factory, it works
fine.
And another thing, currently I am checking about how the word 'sci/tech'
will be indexed in solr. As mentioned in my previous email, if
Hi,
One more query.
Currently in the autosuggestion Solr returns words like below:
googl
googl _
googl search
googl chrome
googl map
The last letter seems to be missing in autosuggestion. I have send the query
as
"?qt=/terms&terms=true&terms.fl=mydata&terms.lower=goog&terms.prefix=goog".
The f
hi..
thanks for your replies..
It seems I mistakenly put ShingleFilterFactory in another field. When I put
the factory in correct field it works fine now.
Thanks.
--
View this message in context:
http://lucene.472066.n3.nabble.com/Solr-Autosuggest-help-tp2580944p2645780.html
Sent from the Sol
> I have added the following line in both the section
> and in section in
> schema.xml.
>
> filter class="solr.ShingleFilterFactory"
> maxShingleSize="2"
> outputUnigrams="true" outputUnigramIfNoNgram="true"
>
> And reindex my content. However, if I query solr for the
> multi work search
> ter
Hi
I have added the following line in both the section and in section in
schema.xml.
filter class="solr.ShingleFilterFactory" maxShingleSize="2"
outputUnigrams="true" outputUnigramIfNoNgram="true"
And reindex my content. However, if I query solr for the multi work search
terms suggestion , it
> I am using Solr (1.4.1) AutoSuggest feature using
> termsComponent.
>
> Currently, if I type 'goo' means, Solr suggest words like
> 'google'.
>
> But I would like to receive suggestions like 'google,
> google alerts, ..' .
> ie, suggestions with single and multiple terms.
>
> Not sure, whethe