Re: suggester issues

2012-09-12 Thread aniljayanti
Hi, I m also facing same issue while using suggester (working in c#.net). Below is my configurations. suggest/?q="michael ja" --- Response : - - 0 1 - - -

Re: suggester issues

2011-08-21 Thread Will Oberman
s for your help. -- From: "William Oberman" Sent: Friday, August 19, 2011 5:07 PM To: Subject: Re: suggester issues Hard to say, so I'll list the exact steps I took: -Downloaded apache-solr-3.3.0 (I like to stick with releases vs. svn) -Untar and cd -ant -Wrote my class be

Re: suggester issues

2011-08-21 Thread Kuba Krzemien
2011 5:07 PM To: Subject: Re: suggester issues Hard to say, so I'll list the exact steps I took: -Downloaded apache-solr-3.3.0 (I like to stick with releases vs. svn) -Untar and cd -ant -Wrote my class below (under a peer directory in apache-solr-3.3.0) -javac -cp ../dist/apache-solr-core-3.3.0

Re: suggester issues

2011-08-19 Thread William Oberman
> org.apache.solr.spelling.QueryConverter". > > What am I doing wrong? > > -- > From: "William Oberman" > Sent: Thursday, August 18, 2011 10:35 PM > To: > Subject: Re: suggester issues > >> I t

Re: suggester issues

2011-08-19 Thread Kuba Krzemien
nverter". What am I doing wrong? -- From: "William Oberman" Sent: Thursday, August 18, 2011 10:35 PM To: Subject: Re: suggester issues I tried this: package com.civicscience; import java.util.ArrayList; import java.util.C

Re: suggester issues

2011-08-18 Thread William Oberman
I tried this: package com.civicscience; import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import org.apache.lucene.analysis.Token; import org.apache.solr.spelling.QueryConverter; /**

Re: suggester issues

2011-08-18 Thread Alexei Martchenko
It can be done, I did that with shingles, but it's not the way it's meant to be. The main problem with suggester is that we want compound words and we never get them. I try to get "internet explorer" but when i enter in the second word, "internet e" the suggester never finds "explorer". 2011/8/18

Re: suggester issues

2011-08-18 Thread oberman_cs
I was trying to deal with the exact same issue, with the exact same results. Is there really no way to feed a phrase into the suggester (spellchecker) without it splitting the input phrase into words? -- View this message in context: http://lucene.472066.n3.nabble.com/suggester-issues-tp3262718p

Re: suggester issues

2011-08-18 Thread O. Klein
The problem lies in the suggester like the spellchecker, tokenizing on whitespace. So while shingles might give you nice suggestions, the behaviour of the Suggester makes it unusable. Besides that, I never succeeded in getting the suggester to show more collations then one. Normal spellchecker on

Re: suggester issues

2011-08-18 Thread Kuba KrzemieĊ„
What happens if you set spellcheck.maxCollations to more than 1? -- From: "Alexei Martchenko" Sent: Wednesday, August 17, 2011 11:01 PM To: Subject: Re: suggester issues I've been indexing and reindexing stuff here with Sh

Re: suggester issues

2011-08-17 Thread Alexei Martchenko
I've been indexing and reindexing stuff here with Shingles. I don't believe it's the best approach. Results are interesting, but I believe it's not what the suggester is meant to be. I tried but I got compound words in the suggestion itself. If you query them like http://localhost:

Re: suggester issues

2011-08-17 Thread Alexei Martchenko
I have the very very very same problem. I could copy+paste your message as mine. I've discovered so far that bigger dictionaries work better for me, controlling threshold is much better than avoid indexing one or twio fields. Of course i'm still polishing this. At this very moment I was looking in