You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by cp...@apache.org on 2016/02/12 17:18:51 UTC

[2/3] lucene-solr git commit: SOLR-8621: add (test-framework) RandomForceMergePolicyFactory for existing (test-framework) RandomForceMergePolicy

SOLR-8621: add (test-framework) RandomForceMergePolicyFactory for existing (test-framework) RandomForceMergePolicy


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/d76be85a
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/d76be85a
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/d76be85a

Branch: refs/heads/branch_5x
Commit: d76be85a42e58ff906342c1283b3d4608d59df36
Parents: b2e83b6
Author: Christine Poerschke <cp...@apache.org>
Authored: Thu Feb 11 17:29:34 2016 +0000
Committer: Christine Poerschke <cp...@apache.org>
Committed: Fri Feb 12 16:04:40 2016 +0000

----------------------------------------------------------------------
 .../util/RandomForceMergePolicyFactory.java     | 37 ++++++++++++++++++++
 1 file changed, 37 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/d76be85a/solr/test-framework/src/java/org/apache/solr/util/RandomForceMergePolicyFactory.java
----------------------------------------------------------------------
diff --git a/solr/test-framework/src/java/org/apache/solr/util/RandomForceMergePolicyFactory.java b/solr/test-framework/src/java/org/apache/solr/util/RandomForceMergePolicyFactory.java
new file mode 100644
index 0000000..b9bd3cb
--- /dev/null
+++ b/solr/test-framework/src/java/org/apache/solr/util/RandomForceMergePolicyFactory.java
@@ -0,0 +1,37 @@
+/*
+ * 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.
+ */
+package org.apache.solr.util;
+
+import org.apache.lucene.index.MergePolicy;
+import org.apache.solr.core.SolrResourceLoader;
+import org.apache.solr.index.MergePolicyFactory;
+import org.apache.solr.index.MergePolicyFactoryArgs;
+import org.apache.solr.schema.IndexSchema;
+
+/** A {@link MergePolicyFactory} for {@link RandomForceMergePolicy}. */
+public final class RandomForceMergePolicyFactory extends MergePolicyFactory {
+
+  public RandomForceMergePolicyFactory(SolrResourceLoader resourceLoader, MergePolicyFactoryArgs args, IndexSchema schema) {
+    super(null, args, schema);
+  }
+
+  @Override
+  public MergePolicy getMergePolicy() {
+    return new RandomForceMergePolicy();
+  }
+
+}