Re: Spell check suggestion and correct way of implementation and some Questions

2009-11-15 Thread Shalin Shekhar Mangar
On Wed, Nov 4, 2009 at 12:31 AM, darniz  wrote:

>
> Thanks
>
> i included the  buildOncommit and buildOnOptimize as true and indexed some
> documents and it automatically builds the dictionary.
>
> Are there any performance issues we should be aware of, with this approach.
>
>
Well, it depends. Each commit/optimize will re-create the spell check index
with those options. So, it is best if you test it out with your index,
queries and load.


-- 
Regards,
Shalin Shekhar Mangar.


Re: Spell check suggestion and correct way of implementation and some Questions

2009-11-03 Thread darniz

Thanks

i included the  buildOncommit and buildOnOptimize as true and indexed some
documents and it automatically builds the dictionary.

Are there any performance issues we should be aware of, with this approach.

Rashid
-- 
View this message in context: 
http://old.nabble.com/Spell-check-suggestion-and-correct-way-of-implementation-and-some-Questions-tp26096664p26162724.html
Sent from the Solr - User mailing list archive at Nabble.com.



Re: Spell check suggestion and correct way of implementation and some Questions

2009-11-02 Thread darniz

Hello everybody
i am able to use spell checker but i have some questions if someone can
answer this
if i search free text word waranty then i get back suggestion warranty which
is fine.
but if do a search on field for example
description:waranty the output collation element is description:warranty
which i dont want i want to get back only the text ie warranty.

We are using collation to return back the results since if a user types
three words then we use collation in the response element to display the
spelling suggestion.

Any advice

darniz

-- 
View this message in context: 
http://old.nabble.com/Spell-check-suggestion-and-correct-way-of-implementation-and-some-Questions-tp26096664p26157895.html
Sent from the Solr - User mailing list archive at Nabble.com.



Re: Spell check suggestion and correct way of implementation and some Questions

2009-11-02 Thread darniz

Hello everybody
i am able to use spell checker but i have some questions if someone can
answer this
if i search free text word waranty then i get back suggestion warranty which
is fine.
but if do a search on field for example
description:waranty the output collation element is description:warranty
which i dont want i want to get back only the text ie warranty.

We are using collation to return back the results since if a user types
three words then we use collation in the response element to display the
spelling suggestion.

Any advice

darniz



-- 
View this message in context: 
http://old.nabble.com/Spell-check-suggestion-and-correct-way-of-implementation-and-some-Questions-tp26096664p26157893.html
Sent from the Solr - User mailing list archive at Nabble.com.



Re: Spell check suggestion and correct way of implementation and some Questions

2009-11-02 Thread Shalin Shekhar Mangar
On Wed, Oct 28, 2009 at 8:57 PM, darniz  wrote:

>
> Question. Should i build the dictionlary only once and after that as new
> words are indexed the dictionary will be updated. Or i to do that manually
> over certain interval.
>
>
No. The dictionary is built only when spellcheck.build=true is specified as
a request parameter. You will need to explicitly send spellcheck.build=true
again when the document changes or you can use the buildOnCommit or
buildOnOptimize parameters to re-build the index automatically.

http://wiki.apache.org/solr/SpellCheckComponent#Building_on_Commits


>
> add the spellcheck component to the handler in my case as of now standard
> requets handler. I might also start adding some more dismax handlers
> depending on my requirement
>  
>
> 
>   explicit
>   
> 
> 
>spellcheck
> 
>  
>
> run the query with parameter spell.check=true, and also specify against
> which dictionary you want to run spell check again in my case my
> spellcheck.dictionary parameter is mySpellChecker.
>
>
The parameter is spellcheck=true not spell.check=true. If you do not give a
name to your dictionary then you do not need to add the
spellcheck.dictionary parameter.

-- 
Regards,
Shalin Shekhar Mangar.


Spell check suggestion and correct way of implementation and some Questions

2009-10-28 Thread darniz

Hi Solr masters,

I just wanted to confirm what i read is the best and optimal way of doing
spell check correction.
i am using index based spell check.
For this as the doc says
Create a field ex. my_text with a fieldType my_text_fl which has all the
filters defined.

Copy all the othe fields data to the field my_text using copy features.

In the solr config file in the searchComponent which is spellcheck add the
below code

  


  mySpellChecker
  spell_text
  
  org.apache.lucene.search.spell.JaroWinklerDistance
  ./mySpellCheckerDataIndex

  

build the dictionary using the get command

Question. Should i build the dictionlary only once and after that as new
words are indexed the dictionary will be updated. Or i to do that manually
over certain interval.


add the spellcheck component to the handler in my case as of now standard
requets handler. I might also start adding some more dismax handlers
depending on my requirement
  

 
   explicit
   
 
 
spellcheck
 
  

run the query with parameter spell.check=true, and also specify against
which dictionary you want to run spell check again in my case my
spellcheck.dictionary parameter is mySpellChecker.



Please let know if this the best way since i have to start implementing it.

thanks
darniz




-- 
View this message in context: 
http://www.nabble.com/Spell-check-suggestion-and-correct-way-of-implementation-and-some-Questions-tp26096664p26096664.html
Sent from the Solr - User mailing list archive at Nabble.com.