Return-Path: Delivered-To: apmail-lucene-solr-commits-archive@locus.apache.org Received: (qmail 91143 invoked from network); 14 Nov 2008 18:22:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 14 Nov 2008 18:22:58 -0000 Received: (qmail 86189 invoked by uid 500); 14 Nov 2008 18:23:05 -0000 Delivered-To: apmail-lucene-solr-commits-archive@lucene.apache.org Received: (qmail 86160 invoked by uid 500); 14 Nov 2008 18:23:05 -0000 Mailing-List: contact solr-commits-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: solr-dev@lucene.apache.org Delivered-To: mailing list solr-commits@lucene.apache.org Received: (qmail 86151 invoked by uid 99); 14 Nov 2008 18:23:05 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Nov 2008 10:23:05 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.130] (HELO eos.apache.org) (140.211.11.130) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Nov 2008 18:21:53 +0000 Received: from eos.apache.org (localhost [127.0.0.1]) by eos.apache.org (Postfix) with ESMTP id 6D6C1118D6 for ; Fri, 14 Nov 2008 18:22:37 +0000 (GMT) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Apache Wiki To: solr-commits@lucene.apache.org Date: Fri, 14 Nov 2008 18:22:37 -0000 Message-ID: <20081114182237.11088.20111@eos.apache.org> Subject: [Solr Wiki] Update of "SpellCheckComponent" by jeffnewburn X-Virus-Checked: Checked by ClamAV on apache.org Dear Wiki user, You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification. The following page has been changed by jeffnewburn: http://wiki.apache.org/solr/SpellCheckComponent ------------------------------------------------------------------------------ }}} + When adding FieldName be aware all fieldType processing is done prior to the dictionary creation. It is best to avoid a heavily processed field (ie synonyms and stemming) to get more accurate results. If the field has many word variations from processing then the dictionary will be created with those in addition to more valid spell checking data. + Multiple "spellchecker" instances can be configured in the same way. The currently available spellchecker implementations are: * org.apache.solr.spelling.!IndexBasedSpellChecker -- Create and use a spelling dictionary that is based on the Solr index or an existing Lucene index * org.apache.solr.spelling.!FileBasedSpellChecker -- Create and use a spelling dictionary based off a flat file. This can be useful for using Solr as a spelling server or in other instances when spelling suggestions do not need to be based on the content of an actual index.