Return-Path: X-Original-To: apmail-lucene-solr-user-archive@minotaur.apache.org Delivered-To: apmail-lucene-solr-user-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 36D20D151 for ; Mon, 2 Jul 2012 11:49:59 +0000 (UTC) Received: (qmail 14922 invoked by uid 500); 2 Jul 2012 11:49:56 -0000 Delivered-To: apmail-lucene-solr-user-archive@lucene.apache.org Received: (qmail 14885 invoked by uid 500); 2 Jul 2012 11:49:55 -0000 Mailing-List: contact solr-user-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: solr-user@lucene.apache.org Delivered-To: mailing list solr-user@lucene.apache.org Received: (qmail 14862 invoked by uid 99); 2 Jul 2012 11:49:55 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 02 Jul 2012 11:49:55 +0000 X-ASF-Spam-Status: No, hits=0.0 required=5.0 tests=FSL_RCVD_USER,RCVD_IN_DNSWL_NONE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [212.27.42.5] (HELO smtp5-g21.free.fr) (212.27.42.5) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 02 Jul 2012 11:49:47 +0000 Received: from [127.0.0.1] (unknown [88.172.8.152]) by smtp5-g21.free.fr (Postfix) with ESMTP id 9A078D48145 for ; Mon, 2 Jul 2012 13:49:19 +0200 (CEST) Message-ID: <4FF18ABB.9000709@free.fr> Date: Mon, 02 Jul 2012 13:49:15 +0200 From: Bruno Mannina User-Agent: Mozilla/5.0 (Windows NT 6.0; rv:13.0) Gecko/20120614 Thunderbird/13.0.1 MIME-Version: 1.0 To: solr-user@lucene.apache.org Subject: Re: Dynamic Field Name? References: <1341228758.75753.YahooMailClassic@web121706.mail.ne1.yahoo.com> In-Reply-To: <1341228758.75753.YahooMailClassic@web121706.mail.ne1.yahoo.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Antivirus: avast! (VPS 120702-0, 02/07/2012), Outbound message X-Antivirus-Status: Clean X-Virus-Checked: Checked by ClamAV on apache.org Le 02/07/2012 13:32, Ahmet Arslan a �crit : > > --- On Mon, 7/2/12, Bruno Mannina wrote: > >> From: Bruno Mannina >> Subject: Dynamic Field Name? >> To: solr-user@lucene.apache.org >> Date: Monday, July 2, 2012, 1:02 PM >> Dear All, >> >> In my XML files to index I have several abstract fields with >> different languages. >> I.e: ABEN, ABIT, ABFR, ABPT, etc.... >> >> I would like to: >> Index & Store only the ABEN >> and >> Only Store all other AB* fields >> >> Is it possible to write in the schema.xml >> >> > stored="true" multivalued="true" /> >> > stored="true" multivalued="true" /> >> >> PS: multivalues because sometimes I have 2 or 3 items in the >> same > Yes it is possible. Note that you need to use capital 'V' in multiValued option. > > > > > > ok thx !