Uses of Class
org.apache.lucene.index.IndexWriterConfig.OpenMode
-
Packages that use IndexWriterConfig.OpenMode Package Description org.apache.lucene.benchmark.byTask.tasks Extendable benchmark tasks.org.apache.lucene.facet.taxonomy.directory Taxonomy implemented using a Lucene-Indexorg.apache.lucene.index Code to maintain and access indices. -
-
Uses of IndexWriterConfig.OpenMode in org.apache.lucene.benchmark.byTask.tasks
Methods in org.apache.lucene.benchmark.byTask.tasks with parameters of type IndexWriterConfig.OpenMode Modifier and Type Method Description static IndexWriter
CreateIndexTask. configureWriter(Config config, PerfRunData runData, IndexWriterConfig.OpenMode mode, IndexCommit commit)
static IndexWriterConfig
CreateIndexTask. createWriterConfig(Config config, PerfRunData runData, IndexWriterConfig.OpenMode mode, IndexCommit commit)
-
Uses of IndexWriterConfig.OpenMode in org.apache.lucene.facet.taxonomy.directory
Methods in org.apache.lucene.facet.taxonomy.directory with parameters of type IndexWriterConfig.OpenMode Modifier and Type Method Description protected IndexWriterConfig
DirectoryTaxonomyWriter. createIndexWriterConfig(IndexWriterConfig.OpenMode openMode)
Create theIndexWriterConfig
that would be used for opening the internal index writer.Constructors in org.apache.lucene.facet.taxonomy.directory with parameters of type IndexWriterConfig.OpenMode Constructor Description DirectoryTaxonomyWriter(Directory directory, IndexWriterConfig.OpenMode openMode)
Creates a new instance with a default cached as defined byDirectoryTaxonomyWriter.defaultTaxonomyWriterCache()
.DirectoryTaxonomyWriter(Directory directory, IndexWriterConfig.OpenMode openMode, TaxonomyWriterCache cache)
Construct a Taxonomy writer. -
Uses of IndexWriterConfig.OpenMode in org.apache.lucene.index
Methods in org.apache.lucene.index that return IndexWriterConfig.OpenMode Modifier and Type Method Description IndexWriterConfig.OpenMode
IndexWriterConfig. getOpenMode()
Returns theIndexWriterConfig.OpenMode
set byIndexWriterConfig.setOpenMode(OpenMode)
.static IndexWriterConfig.OpenMode
IndexWriterConfig.OpenMode. valueOf(String name)
Returns the enum constant of this type with the specified name.static IndexWriterConfig.OpenMode[]
IndexWriterConfig.OpenMode. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.lucene.index with parameters of type IndexWriterConfig.OpenMode Modifier and Type Method Description IndexWriterConfig
IndexWriterConfig. setOpenMode(IndexWriterConfig.OpenMode openMode)
SpecifiesIndexWriterConfig.OpenMode
of the index.Constructors in org.apache.lucene.index with parameters of type IndexWriterConfig.OpenMode Constructor Description PersistentSnapshotDeletionPolicy(IndexDeletionPolicy primary, Directory dir, IndexWriterConfig.OpenMode mode, Version matchVersion)
PersistentSnapshotDeletionPolicy
wraps anotherIndexDeletionPolicy
to enable flexible snapshotting.
-