Return-Path: X-Original-To: apmail-lucene-solr-commits-archive@minotaur.apache.org Delivered-To: apmail-lucene-solr-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 5D7C19AF3 for ; Wed, 30 Nov 2011 21:46:20 +0000 (UTC) Received: (qmail 50845 invoked by uid 500); 30 Nov 2011 21:46:20 -0000 Delivered-To: apmail-lucene-solr-commits-archive@lucene.apache.org Received: (qmail 50819 invoked by uid 500); 30 Nov 2011 21:46:20 -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 50812 invoked by uid 99); 30 Nov 2011 21:46:20 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 30 Nov 2011 21:46:20 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.131] (HELO eos.apache.org) (140.211.11.131) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 30 Nov 2011 21:46:18 +0000 Received: from eos.apache.org (localhost [127.0.0.1]) by eos.apache.org (Postfix) with ESMTP id C903CD02; Wed, 30 Nov 2011 21:45:56 +0000 (UTC) MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable From: Apache Wiki To: Apache Wiki Date: Wed, 30 Nov 2011 21:45:56 -0000 Message-ID: <20111130214556.2091.19809@eos.apache.org> Subject: =?utf-8?q?=5BSolr_Wiki=5D_Update_of_=22SchemaXml=22_by_MarkBennett?= Auto-Submitted: auto-generated 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 "SchemaXml" page has been changed by MarkBennett: http://wiki.apache.org/solr/SchemaXml?action=3Ddiff&rev1=3D50&rev2=3D51 Comment: Including termVector option * `omitNorms=3Dtrue|false` * This is arguably an advanced option. * Set to true to omit the norms associated with this field (this disabl= es length normalization and index-time boosting for the field, and saves so= me memory). Only full-text fields or fields that need an index-time boost n= eed norms. + * `termVectors=3Dfalse|true` Solr 1.1 + * If set, include full term vector info. Corresponds to V field attrib= ute in Luke. * `omitTermFreqAndPositions=3Dtrue|false` [[Solr1.4]] * If set, omit term freq, positions and [[Payloads|payloads]] from post= ings for this field. This can be a performance boost for fields that don't = require that information and reduces storage space required for the index. = Queries that rely on position that are issued on a field with this option w= ill silently fail to find documents. * `omitPositions=3Dtrue|false` [[Solr3.4]]