Return-Path: Delivered-To: apmail-lucene-solr-commits-archive@minotaur.apache.org Received: (qmail 53439 invoked from network); 5 Oct 2009 17:30:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 5 Oct 2009 17:30:14 -0000 Received: (qmail 82040 invoked by uid 500); 5 Oct 2009 17:30:14 -0000 Delivered-To: apmail-lucene-solr-commits-archive@lucene.apache.org Received: (qmail 81956 invoked by uid 500); 5 Oct 2009 17:30:13 -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 81947 invoked by uid 99); 5 Oct 2009 17:30:13 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Oct 2009 17:30:13 +0000 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; Mon, 05 Oct 2009 17:30:11 +0000 Received: from eos.apache.org (localhost [127.0.0.1]) by eos.apache.org (Postfix) with ESMTP id 144C7118B0; Mon, 5 Oct 2009 17:29:50 +0000 (GMT) MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable From: Apache Wiki To: Apache Wiki Date: Mon, 05 Oct 2009 17:29:49 -0000 Message-ID: <20091005172949.11445.32336@eos.apache.org> Subject: =?utf-8?q?=5BSolr_Wiki=5D_Update_of_=22AnalyzersTokenizersTokenFilters=22?= =?utf-8?q?_by_ChristianZambrano?= 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 chan= ge notification. The "AnalyzersTokenizersTokenFilters" page has been changed by ChristianZam= brano: http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters?action=3Ddiff&r= ev1=3D60&rev2=3D61 =3D=3D Analyzers =3D=3D = Analyzers are components that pre-process input text at index time and/or= at search time. It's important to use the same or similar analyzers that= process text in a compatible manner at index and query time. For example,= if an indexing analyzer lowercases words, then the query analyzer should d= o the same to enable finding the indexed words. + = + On wildcard and fuzzy searches, no text analysis is performed on the sear= ch word. = The Analyzer class is an abstract class, but Lucene comes with a few conc= rete Analyzers that pre-process their input in different ways. If you need = to pre-process input text and queries in a way that is not provided by any = of Lucene's built-in Analyzers, you will need to specify a custom Analyzer = in the Solr schema. =20