Re: Google didn't help on this one!

2015-10-26 Thread Mikhail Khludnev
Mark, wiki and defauit configs are formally correct and just might be not specific enough for older spellcheckers. I closed SOLR-8063. On Wed, Sep 16, 2015 at 5:30 PM, Mikhail Khludnev < mkhlud...@griddynamics.com> wrote: > Raised

Re: Google didn't help on this one!

2015-09-16 Thread Alessandro Benedetti
Taking a look to your request : GET /solr/EventLog/spellCheckCompRH?qt=%2FspellCheckCompRH=Some+more+text+wit+some+missspelled+wordz.=on=true You call : *Solr Core ( Collection)* : EventLog *Request handler* : spellCheckCompRH *Qt parameter* ( legacy to specify the request handler) :

Re: Google didn't help on this one!

2015-09-16 Thread Mark Fenbers
On 9/15/2015 6:49 PM, Shawn Heisey wrote: >From the information we have, we cannot tell if this is a problem request or not. Do you have a core/collection named "EventLog" on your Solr server? It will be case sensitive. If you do, does that config have a handler named "spellCheckCompRH" in

Re: Google didn't help on this one!

2015-09-16 Thread Alessandro Benedetti
Can you post us the schema description of the fields you are using for spellchecking ? Are you using numeric fields to get the suggestions from ? ( which should be quite weird) Cheers 2015-09-16 12:22 GMT+01:00 Mark Fenbers : > On 9/15/2015 6:49 PM, Shawn Heisey wrote: >

Re: Google didn't help on this one!

2015-09-16 Thread Mikhail Khludnev
https://github.com/apache/lucene-solr/blob/trunk/solr/core/src/java/org/apache/solr/spelling/AbstractLuceneSpellChecker.java#L97 this mean that 0.5 should be replaced to 0.5 On Wed, Sep 16, 2015 at 2:32 PM, Upayavira wrote: > See this: > > Caused by:

Re: Google didn't help on this one!

2015-09-16 Thread Mark Fenbers
On 9/16/2015 5:24 AM, Alessandro Benedetti wrote: As a reference I always suggest : https://cwiki.apache.org/confluence/display/solr/Spell+Checking I read this doc and have found it moderately helpful to my current problem. But I have at least one question about it, especially given that my

Re: Google didn't help on this one!

2015-09-16 Thread Mark Fenbers
Indeed! should be changed to in the "Spell Checking" document (https://cwiki.apache.org/confluence/display/solr/Spell+Checking) and in all the baseline solrconfig.xml files provided in the distribution. In addition, ' internal' should be removed/changed in the same document and same

Re: Google didn't help on this one!

2015-09-16 Thread Upayavira
See this: Caused by: java.lang.ClassCastException: java.lang.Float cannot be cast to java.lang.String at org.apache.solr.spelling.AbstractLuceneSpellChecker.init(AbstractLuceneSpellChecker.java:97) AbstractLuceneSpellChecker is expecting a string, but getting a float. Can you paste here

Re: Google didn't help on this one!

2015-09-16 Thread Mark Fenbers
Ah ha!! Exactly my point in the post I sent about the same time you did (same Thread)! Mark On 9/16/2015 8:03 AM, Mikhail Khludnev wrote: https://github.com/apache/lucene-solr/blob/trunk/solr/core/src/java/org/apache/solr/spelling/AbstractLuceneSpellChecker.java#L97 this mean that 0.5

Re: Google didn't help on this one!

2015-09-16 Thread Mikhail Khludnev
Raised https://issues.apache.org/jira/browse/SOLR-8063 On Wed, Sep 16, 2015 at 3:35 PM, Mark Fenbers wrote: > Indeed! should be changed to in the "Spell Checking" > document (https://cwiki.apache.org/confluence/display/solr/Spell+Checking) > and in all the baseline

Re: Google didn't help on this one!

2015-09-15 Thread Shawn Heisey
On 9/15/2015 11:43 AM, Mark Fenbers wrote: > So I ran "nc -l 8983" then restarted solr, and then ran my app with my > query. nc reported the following: > > GET > /solr/EventLog/spellCheckCompRH?qt=%2FspellCheckCompRH=Some+more+text+wit+some+missspelled+wordz.=on=true=javabin=2 > HTTP/1.1 >

Re: Google didn't help on this one!

2015-09-15 Thread Mark Fenbers
So I ran "nc -l 8983" then restarted solr, and then ran my app with my query. nc reported the following: GET /solr/EventLog/spellCheckCompRH?qt=%2FspellCheckCompRH=Some+more+text+wit+some+missspelled+wordz.=on=true=javabin=2 HTTP/1.1 User-Agent:

Google didn't help on this one!

2015-09-15 Thread Mark Fenbers
I'm working with the spellcheck component of Solr for the first time. I'm using SolrJ, and when I submit my query, I get a Solr Exception: "Expected mime type octet/stream but got text/html." What in the world is this telling me?? The query object I submitted is an entire sentence, not a

Re: Google didn't help on this one!

2015-09-15 Thread Yonik Seeley
On Tue, Sep 15, 2015 at 11:08 AM, Mark Fenbers wrote: > I'm working with the spellcheck component of Solr for the first time. I'm > using SolrJ, and when I submit my query, I get a Solr Exception: "Expected > mime type octet/stream but got text/html." > > What in the

RE: Google didn't help on this one!

2015-09-15 Thread steve shepard
tp://fiddlerbook.com/book/ http://www.telerik.com/fiddler Steve > From: mark.fenb...@noaa.gov > Subject: Re: Google didn't help on this one! > To: solr-user@lucene.apache.org > Date: Tue, 15 Sep 2015 13:43:47 -0400 > > So I ran "nc -l 8983" then restarted solr, and