| java.lang.Object | ||
| ↳ | com.atlassian.jira.issue.index.DefaultIndexManager | |
| ↳ | com.atlassian.jira.issue.index.BulkOnlyIndexManager | |
This index manager ignores calls to reIndex(org.ofbiz.core.entity.GenericValue),
deIndex(org.ofbiz.core.entity.GenericValue) and
reIndexIssues(Collection).
It should only be used where the indexer will manually call reIndexAll()!
|
[Expand]
Inherited Fields | |||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.atlassian.jira.issue.index.DefaultIndexManager
| |||||||||||||||||
From interface
com.atlassian.jira.issue.index.IssueIndexManager
| |||||||||||||||||
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
private only for testing purposes (use the factory method to get an instance)
| |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Remove an issue from the search index.
| |||||||||||
Remove an issue from the search index.
| |||||||||||
Temporarily suspend indexing on this thread.
| |||||||||||
Return true if the index is held.
| |||||||||||
Optimize the underlying indexes.
| |||||||||||
Reindex an issue (eg.
| |||||||||||
Reindex an issue (eg.
| |||||||||||
Reindex all issues.
| |||||||||||
Reindex a set of issues.
| |||||||||||
Reindex a set of issues (GenericValues).
| |||||||||||
Release indexing on this thread.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.atlassian.jira.issue.index.DefaultIndexManager
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
From class
java.lang.Object
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
From interface
com.atlassian.jira.issue.index.IssueIndexManager
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
From interface
com.atlassian.jira.util.Shutdown
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
From interface
com.atlassian.jira.util.collect.Sized
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
From interface
com.atlassian.jira.util.index.IndexLifecycleManager
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
private only for testing purposes (use the factory method to get an instance)
Remove an issue from the search index.
| IndexException |
|---|
Temporarily suspend indexing on this thread. All index requests will be queued and processed when release is called.
Return true if the index is held.
Optimize the underlying indexes. Make the subsequent searching more efficient.
Reindex an issue (eg. after field updates).
| IndexException |
|---|
Reindex an issue (eg. after field updates).
| IndexException |
|---|
Reindex all issues.
| IndexException |
|---|
Reindex a set of issues.
| issueObjects | Set of Issues to reindex. |
|---|
| IndexException |
|---|
Reindex a set of issues (GenericValues). Use reIndexIssueObjects(Collection) instead when possible.
| issues | The Issue GenericValues to reindex. |
|---|
| IndexException |
|---|
Release indexing on this thread. All queued index requests will be processed.
| IndexException |
|---|

