Searched defs:optimize (Results 1 - 17 of 17) sorted by relevance

/lucene-3.6.0/lucene/contrib/analyzers/stempel/src/java/org/egothor/stemmer/
H A DGener.java75 * @param orig the Trie to optimize
79 public Trie optimize(Trie orig) { method in class:Gener
H A DLift.java89 public Trie optimize(Trie orig) { method in class:Lift
H A DOptimizer.java82 public Trie optimize(Trie orig) { method in class:Optimizer
H A DReduce.java76 * @param orig the Trie to optimize
79 public Trie optimize(Trie orig) { method in class:Reduce
/lucene-3.6.0/solr/client/ruby/solr-ruby/lib/solr/
H A Dconnection.rb114 # sends an optimize message to the server
115 def optimize method in class:Solr
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/de/
H A DGermanStemmer.java59 optimize( sb );
127 private void optimize( StringBuilder buffer ) method in class:GermanStemmer
/lucene-3.6.0/solr/core/src/java/org/apache/solr/search/
H A DLuceneQueryOptimizer.java57 public TopDocs optimize(BooleanQuery original, method in class:LuceneQueryOptimizer
/lucene-3.6.0/solr/core/src/java/org/apache/solr/update/
H A DCommitUpdateCommand.java23 public boolean optimize; field in class:CommitUpdateCommand
29 * During optimize, optimize down to <= this many segments. Must be >= 1
31 * @see org.apache.lucene.index.IndexWriter#optimize(int)
35 public CommitUpdateCommand(boolean optimize) { argument
37 this.optimize=optimize;
41 return "commit(optimize="+optimize
/lucene-3.6.0/solr/contrib/dataimporthandler/src/java/org/apache/solr/handler/dataimport/
H A DDIHWriter.java34 * @param optimize
36 public void commit(boolean optimize); argument
H A DSolrWriter.java101 public void commit(boolean optimize) { argument
103 CommitUpdateCommand commit = new CommitUpdateCommand(optimize);
H A DDataImporter.java532 public boolean optimize = false; field in class:DataImporter.RequestParams
579 if (requestParams.containsKey("optimize")) {
580 optimize = StrUtils.parseBool((String) requestParams.get("optimize"),false);
581 if (optimize)
/lucene-3.6.0/solr/solrj/src/java/org/apache/solr/client/solrj/
H A DSolrServer.java158 * Performs an explicit optimize, causing a merge of all segments to one.
162 * Note: In most cases it is not required to do explicit optimize
166 public UpdateResponse optimize( ) throws SolrServerException, IOException { method in class:SolrServer
167 return optimize(true, true, 1);
182 * Performs an explicit optimize, causing a merge of all segments to one.
184 * Note: In most cases it is not required to do explicit optimize
190 public UpdateResponse optimize( boolean waitFlush, boolean waitSearcher ) throws SolrServerException, IOException { method in class:SolrServer
191 return optimize(waitFlush, waitSearcher, 1);
195 * Performs an explicit optimize, causing a merge of all segments to one.
197 * Note: In most cases it is not required to do explicit optimize
204 public UpdateResponse optimize(boolean waitFlush, boolean waitSearcher, int maxSegments ) throws SolrServerException, IOException { method in class:SolrServer
[all...]
/lucene-3.6.0/solr/core/src/java/org/apache/solr/util/
H A DSimplePostTool.java80 "or optimize should be executed, and whether the response should\n"+
136 if ("yes".equals(System.getProperty("optimize",DEFAULT_OPTIMIZE))) {
138 t.optimize();
201 * Does a simple optimize operation
203 public void optimize() { method in class:SimplePostTool
204 doGet(appendParam(solrUrl.toString(), "optimize=true"));
/lucene-3.6.0/solr/test-framework/src/java/org/apache/solr/util/
H A DAbstractSolrTestCase.java312 * @see TestHarness#optimize
314 public String optimize(String... args) { method in class:AbstractSolrTestCase
315 return TestHarness.optimize(args);
H A DTestHarness.java194 * Processes an "update" (add, commit or optimize) and
216 * Validates that an "update" (add, commit or optimize) results in success.
228 * Validates that an "update" (add, commit or optimize) results in success.
240 * Validates that an "update" (add, commit or optimize) results in success.
500 * Helper that returns an &lt;optimize&gt; String with
505 public static String optimize(String... args) { method in class:TestHarness
506 return simpleTag("optimize", args);
/lucene-3.6.0/solr/test-framework/src/java/org/apache/solr/
H A DSolrTestCaseJ4.java515 * @see TestHarness#optimize
517 public static String optimize(String... args) { method in class:SolrTestCaseJ4
518 return TestHarness.optimize(args);
910 // optimize 10% of the time
912 assertU(optimize());
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/index/
H A DIndexWriter.java2392 public void optimize() throws CorruptIndexException, IOException { method in class:IndexWriter
2404 public void optimize(int maxNumSegments) throws CorruptIndexException, IOException { method in class:IndexWriter
2416 public void optimize(boolean doWait) throws CorruptIndexException, IOException { method in class:IndexWriter

Completed in 1209 milliseconds