Solr spellcheck configuration
Posted
by Bogdan Gusiev
on Stack Overflow
See other posts from Stack Overflow
or by Bogdan Gusiev
Published on 2010-06-09T10:08:04Z
Indexed on
2010/06/09
10:12 UTC
Read the original article
Hit count: 262
I am trying to build the spellcheck index with IndexBasedSpellChecker
<lst name="spellchecker">
<str name="name">default</str>
<str name="field">text</str>
<str name="spellcheckIndexDir">./spellchecker</str>
</lst>
And I want to specify the dynamic field "*_text" as the field option:
<dynamicField name="*_text" stored="false" type="text" multiValued="true" indexed="true">
How it can be done?
© Stack Overflow or respective owner