Uses of Class
com.atlassian.confluence.search.v2.SearchIndexAccessException
-
Packages that use SearchIndexAccessException Package Description com.atlassian.confluence.internal.index.lucene com.atlassian.confluence.search.v2 Provides an extensible, flexible search API. -
-
Uses of SearchIndexAccessException in com.atlassian.confluence.internal.index.lucene
Methods in com.atlassian.confluence.internal.index.lucene that throw SearchIndexAccessException Modifier and Type Method Description SearchIndexAccessor
DefaultCustomSearchIndexRegistry. add(String name, String relativeIndexPath, ScoringStrategy scoringStrategy, AnalyzerDescriptorProvider analyzerDescriptorProvider)
void
LuceneSearchIndexAccessor. execute(SearchIndexAction action)
SearchIndexAccessor
DefaultCustomSearchIndexRegistry. get(String name)
int
LuceneSearchIndexAccessor. numDocs()
void
DefaultCustomSearchIndexRegistry. remove(String name)
void
LuceneSearchIndexAccessor. snapshot(File destinationDirectory)
-
Uses of SearchIndexAccessException in com.atlassian.confluence.search.v2
Methods in com.atlassian.confluence.search.v2 that throw SearchIndexAccessException Modifier and Type Method Description SearchIndexAccessor
CustomSearchIndexRegistry. add(String name, String relativeIndexPath, ScoringStrategy scoringStrategy, @Nullable AnalyzerDescriptorProvider analyzerDescriptorProvider)
This method can be called multiple times but a newSearchIndexAccessor
instance will be created only once for the first call.void
DelegatingSearchIndexAccessor. execute(SearchIndexAction action)
void
SearchIndexAccessor. execute(SearchIndexAction action)
Executes a SearchIndexAction on the underlying search index.SearchIndexAccessor
CustomSearchIndexRegistry. get(String name)
This method returns theSearchIndexAccessor
corresponding to the index represented by its unique name.int
DelegatingSearchIndexAccessor. numDocs()
int
SearchIndexAccessor. numDocs()
Get the total number of index documents for the underlying search indexvoid
CustomSearchIndexRegistry. remove(String name)
Remove the custom index from the registry.void
DelegatingSearchIndexAccessor. snapshot(File destinationDirectory)
void
SearchIndexAccessor. snapshot(File destinationDirectory)
Take a snapshot of the current index and store it into the destination directory
-