org.apache.solr.common.params
Interface UpdateParams


public interface UpdateParams

A collection of standard params used by Update handlers

Since:
solr 1.2
Version:
$Id: UpdateParams.java 805774 2009-08-19 12:21:22Z noble $

Field Summary
static String COMMIT
          Commit everything after the command completes
static String EXPUNGE_DELETES
           
static String MAX_OPTIMIZE_SEGMENTS
          If optimizing, set the maximum number of segments left in the index after optimization.
static String OPTIMIZE
          Optimize the index and commit everything after the command completes
static String OVERWRITE
          overwrite indexing fields
static String ROLLBACK
          Rollback update commands
static String UPDATE_PROCESSOR
          Select the update processor to use.
static String WAIT_FLUSH
          wait till the command has flushed
static String WAIT_SEARCHER
          wait for the search to warm up
 

Field Detail

WAIT_FLUSH

static final String WAIT_FLUSH
wait till the command has flushed

See Also:
Constant Field Values

WAIT_SEARCHER

static final String WAIT_SEARCHER
wait for the search to warm up

See Also:
Constant Field Values

OVERWRITE

static final String OVERWRITE
overwrite indexing fields

See Also:
Constant Field Values

COMMIT

static final String COMMIT
Commit everything after the command completes

See Also:
Constant Field Values

OPTIMIZE

static final String OPTIMIZE
Optimize the index and commit everything after the command completes

See Also:
Constant Field Values

ROLLBACK

static final String ROLLBACK
Rollback update commands

See Also:
Constant Field Values

UPDATE_PROCESSOR

static final String UPDATE_PROCESSOR
Select the update processor to use. A RequestHandler may or may not respect this parameter

See Also:
Constant Field Values

MAX_OPTIMIZE_SEGMENTS

static final String MAX_OPTIMIZE_SEGMENTS
If optimizing, set the maximum number of segments left in the index after optimization. 1 is the default (and is equivalent to calling IndexWriter.optimize() in Lucene).

See Also:
Constant Field Values

EXPUNGE_DELETES

static final String EXPUNGE_DELETES
See Also:
Constant Field Values


Copyright © 2009 Apache Software Foundation. All Rights Reserved.