You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by tf...@apache.org on 2021/01/09 00:40:38 UTC

[lucene-solr] branch master updated: Remove unused test file (#2174)

This is an automated email from the ASF dual-hosted git repository.

tflobbe pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/master by this push:
     new 4789112  Remove unused test file (#2174)
4789112 is described below

commit 4789112f91ccb04533951f31ea9b5047e995562c
Author: Tomas Fernandez Lobbe <tf...@apache.org>
AuthorDate: Fri Jan 8 16:40:21 2021 -0800

    Remove unused test file (#2174)
---
 .../solr/collection1/conf/solrconfig-caching.xml   | 40 ----------------------
 1 file changed, 40 deletions(-)

diff --git a/solr/core/src/test-files/solr/collection1/conf/solrconfig-caching.xml b/solr/core/src/test-files/solr/collection1/conf/solrconfig-caching.xml
deleted file mode 100644
index f7d941c..0000000
--- a/solr/core/src/test-files/solr/collection1/conf/solrconfig-caching.xml
+++ /dev/null
@@ -1,40 +0,0 @@
-<!--
-  Licensed to the Apache Software Foundation (ASF) under one or more
-  contributor license agreements.  See the NOTICE file distributed with
-  this work for additional information regarding copyright ownership.
-  The ASF licenses this file to You under the Apache License, Version 2.0
-  (the "License"); you may not use this file except in compliance with
-  the License.  You may obtain a copy of the License at
-
-      http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
-  -->
-<config>
-  <luceneMatchVersion>${tests.luceneMatchVersion:LATEST}</luceneMatchVersion>
-  <xi:include href="solrconfig.snippet.randomindexconfig.xml" xmlns:xi="http://www.w3.org/2001/XInclude"/>
-  <directoryFactory name="DirectoryFactory" class="${solr.directoryFactory:solr.RAMDirectoryFactory}"/>
-  <schemaFactory class="ClassicIndexSchemaFactory"/>
-  <query>
-    <cache name="lfuCacheDecayFalse"
-           class="solr.CaffeineCache"
-           size="10"
-           initialSize="9"
-           timeDecay="false" />
-
-    <cache name="lfuCacheDecayTrue"
-           class="solr.CaffeineCache"
-           size="10"
-           initialSize="9"
-           timeDecay="true" />
-
-    <cache name="lfuCacheDecayDefault"
-           class="solr.CaffeineCache"
-           size="10"
-           initialSize="9" />
-  </query>
-</config>