Return-Path: X-Original-To: apmail-lucene-commits-archive@www.apache.org Delivered-To: apmail-lucene-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 16C601726E for ; Wed, 2 Sep 2015 13:06:38 +0000 (UTC) Received: (qmail 50042 invoked by uid 500); 2 Sep 2015 13:06:35 -0000 Mailing-List: contact commits-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@lucene.apache.org Delivered-To: mailing list commits@lucene.apache.org Received: (qmail 49425 invoked by uid 99); 2 Sep 2015 13:06:35 -0000 Received: from eris.apache.org (HELO hades.apache.org) (140.211.11.105) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 02 Sep 2015 13:06:35 +0000 Received: from hades.apache.org (localhost [127.0.0.1]) by hades.apache.org (ASF Mail Server at hades.apache.org) with ESMTP id 26BD1AC1BF5 for ; Wed, 2 Sep 2015 13:06:35 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1700800 [16/24] - in /lucene/dev/branches/lucene6699: ./ dev-tools/ dev-tools/eclipse/ dev-tools/idea/.idea/ dev-tools/scripts/ lucene/ lucene/analysis/ lucene/analysis/common/ lucene/analysis/common/src/java/org/apache/lucene/analysis/ar/... Date: Wed, 02 Sep 2015 13:06:22 -0000 To: commits@lucene.apache.org From: mikemccand@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150902130635.26BD1AC1BF5@hades.apache.org> Modified: lucene/dev/branches/lucene6699/solr/server/solr/configsets/basic_configs/conf/schema.xml URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene6699/solr/server/solr/configsets/basic_configs/conf/schema.xml?rev=1700800&r1=1700799&r2=1700800&view=diff ============================================================================== --- lucene/dev/branches/lucene6699/solr/server/solr/configsets/basic_configs/conf/schema.xml (original) +++ lucene/dev/branches/lucene6699/solr/server/solr/configsets/basic_configs/conf/schema.xml Wed Sep 2 13:06:13 2015 @@ -194,8 +194,8 @@ + removes stop words from case-insensitive "stopwords.txt" + (empty by default), and down cases. At query time only, it + also applies synonyms. --> @@ -344,11 +344,11 @@ words="lang/stopwords_en.txt" /> - + - + --> @@ -359,23 +359,23 @@ words="lang/stopwords_en.txt" /> - + - + --> @@ -426,7 +426,7 @@ + each token, to enable more efficient leading wildcard queries. --> Modified: lucene/dev/branches/lucene6699/solr/server/solr/configsets/data_driven_schema_configs/conf/solrconfig.xml URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene6699/solr/server/solr/configsets/data_driven_schema_configs/conf/solrconfig.xml?rev=1700800&r1=1700799&r2=1700800&view=diff ============================================================================== --- lucene/dev/branches/lucene6699/solr/server/solr/configsets/data_driven_schema_configs/conf/solrconfig.xml (original) +++ lucene/dev/branches/lucene6699/solr/server/solr/configsets/data_driven_schema_configs/conf/solrconfig.xml Wed Sep 2 13:06:13 2015 @@ -1094,7 +1094,7 @@ 0.01 @@ -1542,6 +1542,8 @@ --> ${velocity.template.base.dir:} + ${velocity.solr.resource.loader.enabled:true} + ${velocity.params.resource.loader.enabled:false} - + - + Another way to map multiple source fields to the same + destination field is to use the dynamic field syntax. + copyField also supports a maxChars to copy setting. --> + @@ -330,8 +330,8 @@ + removes stop words from case-insensitive "stopwords.txt" + (empty by default), and down cases. At query time only, it + also applies synonyms. --> @@ -489,11 +489,11 @@ words="lang/stopwords_en.txt" /> - + - + --> @@ -504,23 +504,23 @@ words="lang/stopwords_en.txt" /> - + - + --> @@ -571,7 +571,7 @@ + each token, to enable more efficient leading wildcard queries. --> @@ -646,10 +646,10 @@ a token of "foo|1.4" would be indexed as "foo" with a payload of 1.4f Attributes of the DelimitedPayloadTokenFilterFactory : "delimiter" - a one character delimiter. Default is | (pipe) - "encoder" - how to encode the following value into a playload - float -> org.apache.lucene.analysis.payloads.FloatEncoder, - integer -> o.a.l.a.p.IntegerEncoder - identity -> o.a.l.a.p.IdentityEncoder + "encoder" - how to encode the following value into a playload + float -> org.apache.lucene.analysis.payloads.FloatEncoder, + integer -> o.a.l.a.p.IntegerEncoder + identity -> o.a.l.a.p.IdentityEncoder Fully Qualified class name implementing PayloadEncoder, Encoder must have a no arg constructor. --> @@ -670,10 +670,10 @@ --> - + - + - + - + Modified: lucene/dev/branches/lucene6699/solr/server/solr/configsets/sample_techproducts_configs/conf/solrconfig.xml URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene6699/solr/server/solr/configsets/sample_techproducts_configs/conf/solrconfig.xml?rev=1700800&r1=1700799&r2=1700800&view=diff ============================================================================== --- lucene/dev/branches/lucene6699/solr/server/solr/configsets/sample_techproducts_configs/conf/solrconfig.xml (original) +++ lucene/dev/branches/lucene6699/solr/server/solr/configsets/sample_techproducts_configs/conf/solrconfig.xml Wed Sep 2 13:06:13 2015 @@ -1212,7 +1212,7 @@ 0.01 @@ -1360,64 +1360,54 @@ You'll need to set the solr.clustering.enabled system property when running solr to run with clustering enabled: + -Dsolr.clustering.enabled=true - java -Dsolr.clustering.enabled=true -jar start.jar - - http://wiki.apache.org/solr/ClusteringComponent - http://carrot2.github.io/solr-integration-strategies/ + https://cwiki.apache.org/confluence/display/solr/Result+Clustering --> - - lingo - - - org.carrot2.clustering.lingo.LingoClusteringAlgorithm + - For an overview of Carrot2 lexical resources, see: - http://download.carrot2.org/head/manual/#chapter.lexical-resources + + lingo3g + true + com.carrotsearch.lingo3g.Lingo3GClusteringAlgorithm + clustering/carrot2 + - For an overview of Lingo3G lexical resources, see: - http://download.carrotsearch.com/lingo3g/manual/#chapter.lexical-resources - --> + + lingo + org.carrot2.clustering.lingo.LingoClusteringAlgorithm clustering/carrot2 - stc org.carrot2.clustering.stc.STCClusteringAlgorithm + clustering/carrot2 - kmeans org.carrot2.clustering.kmeans.BisectingKMeansClusteringAlgorithm + clustering/carrot2 - @@ -1447,14 +1437,14 @@ text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0 manu^1.1 cat^1.4 *:* - 10 + 100 *,score clustering - +