public class Indexes extends Object
Index
and Index.Manager
instances.Modifier and Type | Method and Description |
---|---|
static Index.Manager |
createQueuedIndexManager(String name,
Configuration config,
int maxQueueSize)
Creates an index where the index operations are placed on a queue and the
actual work is done on a background thread.
|
static Index.Manager |
createSimpleIndexManager(Configuration config)
Creates an index where the index operation work is done in the calling
thread.
|
@Nonnull public static Index.Manager createQueuedIndexManager(@Nonnull String name, @Nonnull Configuration config, int maxQueueSize)
Index.Result
may be
waited on to make sure that subsequent searchers will see the result of
that update, but you can timeout on that without losing the update.name
- used to name the background thread.config
- that holds the Directory
and Analyzer
used
for indexing and searching.maxQueueSize
- Index.Manager
that has an index configured for queued
operations.@Nonnull public static Index.Manager createSimpleIndexManager(@Nonnull Configuration config)
Index.Result
may be waited on but it will always be a
non-blocking operation as it will be complete already. There is no way to
timeout these operations.
The Index write policy is that flushes will only occur when the IndexWriter decides to according to its internal buffering policy, or when the index is closed.
config
- that holds the Directory
and Analyzer
used
for indexing and searching.Index.Manager
that has an index configured for direct
operations.Copyright © 2002-2017 Atlassian. All Rights Reserved.