Re: LowerCaseFilterFactory and spellchecker

2008-10-17 Thread sunnyfr
; > > 0 > 1 > > Thorne > false > > thorne > > > > results from http://localhost:8983/solr/select/?q=thorne&qt=spellchecker > > > > >

Re: LowerCaseFilterFactory and spellchecker

2007-12-04 Thread Chris Hostetter
: It does make some sense, but I'm not sure that it should be blindly analyzed : without adding logic to handle certain cases (like the QueryParser does). : What happens if the analyzer produces two tokens? The spellchecker has to : deal with this appropriately. Spell checkers should be able to

Re: LowerCaseFilterFactory and spellchecker

2007-11-30 Thread Mike Klaas
- From: Mike Klaas [mailto:[EMAIL PROTECTED] Sent: Thursday, November 29, 2007 6:01 PM To: solr-user@lucene.apache.org Subject: Re: LowerCaseFilterFactory and spellchecker On 29-Nov-07, at 5:40 PM, Chris Hostetter wrote: I'm not very familiar with the SpellCheckerRequestHandler, but i don&#

RE: LowerCaseFilterFactory and spellchecker

2007-11-30 Thread Norskog, Lance
solr-user@lucene.apache.org Subject: Re: LowerCaseFilterFactory and spellchecker On 29-Nov-07, at 5:40 PM, Chris Hostetter wrote: > > I'm not very familiar with the SpellCheckerRequestHandler, but i don't > think you are doing anything wrong. > > a quick skim of the code

Re: LowerCaseFilterFactory and spellchecker

2007-11-29 Thread Mike Klaas
On 29-Nov-07, at 5:40 PM, Chris Hostetter wrote: I'm not very familiar with the SpellCheckerRequestHandler, but i don't think you are doing anything wrong. a quick skim of the code indicates that the "q" param isn't being analyzed by that handler, so the raw input string is pased to the Spe

Re: LowerCaseFilterFactory and spellchecker

2007-11-29 Thread Chris Hostetter
: think i'm just doing something wrong... : : was experimenting with the spellcheck handler with the nightly : checkout from 11-28; seems my spellchecking is case-sensitive, even : tho i think i'm adding the LowerCaseFilterFactory to both the index : and query analyzers. I'm not very familiar wi

Re: LowerCaseFilterFactory and spellchecker

2007-11-29 Thread Sean Timm
It seems the best thing to do would be to do a case-insensitive spellcheck, but provide the suggestion preserving the original case that the user provided--or at least make this an option. Users are often lazy about capitalization, especially with search where they've learned from web search e

Re: LowerCaseFilterFactory and spellchecker

2007-11-28 Thread John Stewart
Rob, Let's say it worked as you want it to in the first place. If the query is for Thurne, wouldn't you get thorne (lower-case 't') as the suggestion? This may look weird for proper names. jds

RE: LowerCaseFilterFactory and spellchecker

2007-11-28 Thread Norskog, Lance
[EMAIL PROTECTED] Sent: Wednesday, November 28, 2007 5:16 PM To: solr-user@lucene.apache.org Subject: Re: LowerCaseFilterFactory and spellchecker lance, thanks for the quick replylooks like 'thorne' is getting added to the dictionary, as it comes up as a suggestion for 'Thorne

Re: LowerCaseFilterFactory and spellchecker

2007-11-28 Thread Rob Casson
r > > > -Original Message- > From: Rob Casson [mailto:[EMAIL PROTECTED] > Sent: Wednesday, November 28, 2007 4:25 PM > To: solr-user@lucene.apache.org > Subject: LowerCaseFilterFactory and spellchecker > > think i'm just doing something wrong... > > was

RE: LowerCaseFilterFactory and spellchecker

2007-11-28 Thread Norskog, Lance
28, 2007 4:25 PM To: solr-user@lucene.apache.org Subject: LowerCaseFilterFactory and spellchecker think i'm just doing something wrong... was experimenting with the spellcheck handler with the nightly checkout from 11-28; seems my spellchecking is case-sensitive, even tho i think

LowerCaseFilterFactory and spellchecker

2007-11-28 Thread Rob Casson
think i'm just doing something wrong... was experimenting with the spellcheck handler with the nightly checkout from 11-28; seems my spellchecking is case-sensitive, even tho i think i'm adding the LowerCaseFilterFactory to both the index and query analyzers. here's a brief rundown of my testing