Re: Suggest aka "autocomplete" request handler with solr 4.4

2013-08-08 Thread Utkarsh Sengar
HI Chris, You were right, "appl" was matched to "application". So, I created a new type without the stemmer. New type:

Re: Suggest aka "autocomplete" request handler with solr 4.4

2013-08-08 Thread Vinícius
if correctSpelled is true, then "appl" was found in solr index. In this case, maybe the EnglishMinimalStemFilterFactory filter in text_general fieldType is messing your suggestion. On 6 August 2013 15:33, Utkarsh Sengar wrote: > Jack/Chris, > > 1. This is my complete schema.xml: > > https://gi

Re: Suggest aka "autocomplete" request handler with solr 4.4

2013-08-06 Thread Utkarsh Sengar
Jack/Chris, 1. This is my complete schema.xml: https://gist.github.com/utkarsh2012/6167128/raw/1d5ac6520b666435cd040b5cc6dcb434cdfd7925/schema.xml More specifically, allText is of type: text_general which has a LowerCaseFatcory during index time. 2. allText has values: http://solr_server/solr/pro

Re: Suggest aka "autocomplete" request handler with solr 4.4

2013-08-05 Thread Chris Hostetter
: Where "allText" is a copy field which indexes all the content I have in : document title, description etc. what does the field & fieldType of "allText" look like? : I have reindexed my data after adding this config (i.e. loading the whole : dataset again via UpdateCSV), also tried to reload th

Re: Suggest aka "autocomplete" request handler with solr 4.4

2013-08-05 Thread Jack Krupansky
"http://localhost:8983/solr/terms?terms.fl=allText&terms.limit=100&indent=true"; -- Jack Krupansky -Original Message- From: Utkarsh Sengar Sent: Monday, August 05, 2013 7:40 PM To: solr-user@lucene.apache.org Subject: Re: Suggest aka "autocomplete" request ha

Re: Suggest aka "autocomplete" request handler with solr 4.4

2013-08-05 Thread Utkarsh Sengar
Bumping this one, is this feature maintained anymore? Thanks, -Utkarsh On Fri, Aug 2, 2013 at 2:27 PM, Utkarsh Sengar wrote: > I am trying to get autocorrect and suggest feature work on my solr 4.4 > setup. > > As recommended here: http://wiki.apache.org/solr/Suggester, this is my > solrconfig:

Suggest aka "autocomplete" request handler with solr 4.4

2013-08-02 Thread Utkarsh Sengar
I am trying to get autocorrect and suggest feature work on my solr 4.4 setup. As recommended here: http://wiki.apache.org/solr/Suggester, this is my solrconfig: http://apaste.info/eBPr Where "allText" is a copy field which indexes all the content I have in document title, description etc. I am t