| Modifier and Type | Method and Description |
|---|---|
void |
IndexerBatchListener.afterBatch(IndexerBatchContext batchContext)
Handles a notification that the processing for a particular
IndexerBatchContext has just been completed. |
void |
IndexerBatchListener.afterBatchError(IndexerBatchContext batchContext)
Handles a notification that the processing for a particular
IndexerBatchContext failed. |
void |
IndexerListener.afterIndex(IndexerContext context)
Handles a notification that the indexing for a particular
IndexerContext has just been completed. |
void |
IndexerListener.afterIndexError(IndexerContext context)
Handles a notification that the indexing for a particular
IndexerContext failed. |
void |
ExtendedIndexerBatchListener.afterPrepareContext(IndexerBatchContext context)
The implementation of this method will be invoked after the context preparation.
|
void |
ExtendedIndexerListener.afterPrepareContext(IndexerContext context)
The implementation of this method will be invoked after the context preparation.
|
void |
IndexerQueryListener.afterQuery(IndexerQueryContext queryContext)
Handles a notification that an indexer query has just completed.
|
void |
IndexerQueryListener.afterQueryError(IndexerQueryContext queryContext)
Handles a notification that an indexer query failed (this may also be due to listeners failing).
|
void |
IndexerBatchListener.beforeBatch(IndexerBatchContext batchContext)
Handles a notification that the processing for a particular
IndexerBatchContext is about to begin. |
void |
IndexerListener.beforeIndex(IndexerContext context)
Handles a notification that the indexing for a particular
IndexerContext is about to begin. |
void |
IndexerQueryListener.beforeQuery(IndexerQueryContext queryContext)
Handles a notification that an indexer query is about to begin execution.
|
T |
IndexerQueryContextFactory.createContext(FacetSearchConfig facetSearchConfig,
IndexedType indexedType,
String query,
Map<String,Object> queryParameters)
Creates a new indexer context and sets it as current.
|
void |
IndexerService.deleteFromIndex(FacetSearchConfig facetSearchConfig)
Removes some items from the index.
|
void |
IndexerService.deleteFromIndex(FacetSearchConfig facetSearchConfig,
Map<String,String> indexerHints)
Same as
IndexerService.deleteFromIndex(FacetSearchConfig) but allows to pass the indexer hints as parameter. |
void |
IndexerService.deleteTypeIndex(FacetSearchConfig facetSearchConfig,
IndexedType indexedType)
Removes some items from the index for a specific type.
|
void |
IndexerService.deleteTypeIndex(FacetSearchConfig facetSearchConfig,
IndexedType indexedType,
List<PK> pks)
Removes some items from the index for a specific type.
|
void |
IndexerService.deleteTypeIndex(FacetSearchConfig facetSearchConfig,
IndexedType indexedType,
List<PK> pks,
Map<String,String> indexerHints)
Same as
IndexerService.deleteTypeIndex(FacetSearchConfig, IndexedType, List) but allows to pass the indexer hints as
parameter. |
void |
IndexerService.deleteTypeIndex(FacetSearchConfig facetSearchConfig,
IndexedType indexedType,
Map<String,String> indexerHints)
Same as
IndexerService.deleteTypeIndex(FacetSearchConfig, IndexedType) but allows to pass the indexer hints as
parameter. |
void |
IndexerBatchContextFactory.destroyContext()
Destroys the current context.
|
void |
IndexerContextFactory.destroyContext()
Destroys the current context.
|
void |
IndexerQueryContextFactory.destroyContext()
Destroys the current context.
|
List<ItemModel> |
IndexerQueriesExecutor.getItems(FacetSearchConfig facetSearchConfig,
IndexedType indexedType,
Collection<PK> pks)
Gets the model instances based on a list of pks.
|
List<PK> |
IndexerQueriesExecutor.getPks(FacetSearchConfig facetSearchConfig,
IndexedType indexedType,
String query,
Map<String,Object> queryParameters)
Gets the pks of all the items that will be indexed.
|
void |
IndexerBatchContextFactory.initializeContext()
Initializes the current context and executes the before batch listeners (see
IndexerBatchListener.beforeBatch(IndexerBatchContext)). |
void |
IndexerContextFactory.initializeContext()
Initializes the current context and executes the before index listeners (see
IndexerListener.beforeIndex(IndexerContext)). |
void |
IndexerQueryContextFactory.initializeContext()
Initializes the current context and executes the before index listeners (see
IndexerListener.beforeIndex(IndexerContext)). |
void |
IndexerService.performFullIndex(FacetSearchConfig facetSearchConfig)
Performs a full index operation which recreates the index.
|
void |
IndexerService.performFullIndex(FacetSearchConfig facetSearchConfig,
Map<String,String> indexerHints)
Same as
IndexerService.performFullIndex(FacetSearchConfig) but allows to pass the indexer hints as parameter. |
void |
IndexerBatchContextFactory.prepareContext()
Prepares the context and executes the after prepare context listeners (see
ExtendedIndexerBatchListener.afterPrepareContext(IndexerBatchContext)). |
void |
IndexerContextFactory.prepareContext()
Prepares the context and executes the after prepare context listeners (see
ExtendedIndexerListener.afterPrepareContext(IndexerContext)). |
void |
IndexSwappingCapableIndexer.swapIndexTypes(FacetSearchConfig facetSearchConfig,
IndexedType stagedIndexedType)
Deprecated.
Performs swap operation for core names represented by the index types.
|
void |
IndexerService.updateIndex(FacetSearchConfig facetSearchConfig)
Updates some items on the index.
|
void |
IndexerService.updateIndex(FacetSearchConfig facetSearchConfig,
Map<String,String> indexerHints)
Same as
IndexerService.updateIndex(FacetSearchConfig) but allows to pass the indexer hints as parameter. |
void |
IndexerService.updatePartialTypeIndex(FacetSearchConfig facetSearchConfig,
IndexedType indexedType,
Collection<IndexedProperty> indexedProperties,
List<PK> pks)
Updates some properties of some items on the index for a specific type.
|
void |
IndexerService.updatePartialTypeIndex(FacetSearchConfig facetSearchConfig,
IndexedType indexedType,
Collection<IndexedProperty> indexedProperties,
List<PK> pks,
Map<String,String> indexerHints)
Same as
IndexerService.updatePartialTypeIndex(FacetSearchConfig, IndexedType, Collection, List) but allows to pass the
indexer hints as parameter. |
void |
IndexerService.updateTypeIndex(FacetSearchConfig facetSearchConfig,
IndexedType indexedType)
Updates some items on the index for a specific type.
|
void |
IndexerService.updateTypeIndex(FacetSearchConfig facetSearchConfig,
IndexedType indexedType,
List<PK> pks)
Updates some items on the index for a specific type.
|
void |
IndexerService.updateTypeIndex(FacetSearchConfig facetSearchConfig,
IndexedType indexedType,
List<PK> pks,
Map<String,String> indexerHints)
Same as
IndexerService.updateTypeIndex(FacetSearchConfig, IndexedType, List) but allows to pass the indexer hints as
parameter. |
void |
IndexerService.updateTypeIndex(FacetSearchConfig facetSearchConfig,
IndexedType indexedType,
Map<String,String> indexerHints)
Same as
IndexerService.updateTypeIndex(FacetSearchConfig, IndexedType) but allows to pass the indexer hints as
parameter. |
| Modifier and Type | Method and Description |
|---|---|
void |
SolrExtIndexerJobTest.executeQueryWithContextAwareParameters() |
void |
SolrExtIndexerJobTest.executeQueryWithCronJobAwareParameters() |
void |
SolrExtIndexerJobTest.executeQueryWithParameters() |
protected void |
SolrIndexerJob.indexItems(SolrIndexerCronJobModel solrIndexerCronJob,
FacetSearchConfig facetSearchConfig) |
protected void |
SolrIndexerHotUpdateJob.indexItems(SolrIndexerHotUpdateCronJobModel indexerCronJob,
FacetSearchConfig facetSearchConfig,
Collection<ItemModel> items) |
protected void |
SolrExtIndexerJob.performIndexing(T cronJob,
FacetSearchConfig facetSearchConfig,
IndexedType indexedType,
List<IndexedProperty> indexedProperties,
List<PK> pks,
Map<String,String> indexerHints) |
void |
SolrExtIndexerJobIntegrationTest.testSearchBeforeUpdate() |
| Modifier and Type | Class and Description |
|---|---|
class |
ExporterException |
class |
UndefinedIndexerQuery |
| Modifier and Type | Method and Description |
|---|---|
void |
DefaultIndexer.commit(FacetSearchConfig facetSearchConfig,
IndexedType indexedType,
Index index,
Indexer.CommitType commitType)
Deprecated.
Since 6.2.
|
DefaultIndexerQueryContext |
DefaultIndexerQueryContextFactory.createContext(FacetSearchConfig facetSearchConfig,
IndexedType indexedType,
String query,
Map<String,Object> queryParameters) |
protected IndexerStrategy |
DefaultIndexerService.createIndexerStrategy(FacetSearchConfig facetSearchConfig) |
void |
DefaultIndexerService.deleteFromIndex(FacetSearchConfig facetSearchConfig) |
void |
DefaultIndexerService.deleteFromIndex(FacetSearchConfig facetSearchConfig,
Map<String,String> indexerHints) |
void |
DefaultIndexerService.deleteTypeIndex(FacetSearchConfig facetSearchConfig,
IndexedType indexedType) |
void |
DefaultIndexerService.deleteTypeIndex(FacetSearchConfig facetSearchConfig,
IndexedType indexedType,
List<PK> pks) |
void |
DefaultIndexerService.deleteTypeIndex(FacetSearchConfig facetSearchConfig,
IndexedType indexedType,
List<PK> pks,
Map<String,String> indexerHints) |
void |
DefaultIndexerService.deleteTypeIndex(FacetSearchConfig facetSearchConfig,
IndexedType indexedType,
Map<String,String> indexerHints) |
void |
DefaultIndexerBatchContextFactory.destroyContext() |
void |
DefaultIndexerContextFactory.destroyContext() |
void |
DefaultIndexerQueryContextFactory.destroyContext() |
protected void |
DefaultIndexerBatchContextFactory.executeAfterBatchListeners(DefaultIndexerBatchContext batchContext) |
protected void |
DefaultIndexerContextFactory.executeAfterIndexListeners(DefaultIndexerContext context) |
protected void |
DefaultIndexerBatchContextFactory.executeAfterPrepareListeners(DefaultIndexerBatchContext context) |
protected void |
DefaultIndexerContextFactory.executeAfterPrepareListeners(DefaultIndexerContext context) |
protected void |
DefaultIndexerQueryContextFactory.executeAfterQueryListeners(DefaultIndexerQueryContext context) |
protected void |
DefaultIndexerBatchContextFactory.executeBeforeBatchListeners(DefaultIndexerBatchContext batchContext) |
protected void |
DefaultIndexerContextFactory.executeBeforeIndexListeners(DefaultIndexerContext context) |
protected void |
DefaultIndexerQueryContextFactory.executeBeforeQueryListeners(DefaultIndexerQueryContext context) |
protected Exporter |
DefaultIndexer.getExporter(SolrServerMode serverMode) |
List<ItemModel> |
DefaultIndexerQueriesExecutor.getItems(FacetSearchConfig facetSearchConfig,
IndexedType indexedType,
Collection<PK> pks) |
List<PK> |
DefaultIndexerQueriesExecutor.getPks(FacetSearchConfig facetSearchConfig,
IndexedType indexedType,
String query,
Map<String,Object> queryParameters) |
protected void |
DefaultIndexer.handleError(IndexConfig indexConfig,
IndexedType indexedType,
String message,
Exception error) |
Collection<SolrInputDocument> |
DefaultIndexer.indexItems(Collection<ItemModel> items,
FacetSearchConfig facetSearchConfig,
IndexedType indexedType) |
Collection<SolrInputDocument> |
DefaultIndexer.indexItems(Collection<ItemModel> items,
FacetSearchConfig facetSearchConfig,
IndexedType indexedType,
Collection<IndexedProperty> indexedProperties) |
void |
DefaultIndexerBatchContextFactory.initializeContext() |
void |
DefaultIndexerContextFactory.initializeContext() |
void |
DefaultIndexerQueryContextFactory.initializeContext() |
void |
DefaultIndexer.optimize(FacetSearchConfig facetSearchConfig,
IndexedType indexedType,
Index index)
Deprecated.
Since 6.2.
|
void |
DefaultIndexerService.performFullIndex(FacetSearchConfig facetSearchConfig) |
void |
DefaultIndexerService.performFullIndex(FacetSearchConfig facetSearchConfig,
Map<String,String> indexerHints) |
void |
DefaultIndexerBatchContextFactory.prepareContext() |
void |
DefaultIndexerContextFactory.prepareContext() |
void |
DefaultIndexer.removeAllItems(FacetSearchConfig facetSearchConfig,
IndexedType indexedType,
Index index)
Deprecated.
Since 6.2.
|
Collection<String> |
DefaultIndexer.removeItems(Collection<ItemModel> items,
FacetSearchConfig facetSearchConfig,
IndexedType indexedType) |
void |
DefaultIndexer.removeItemsByPk(Collection<PK> pks,
FacetSearchConfig facetSearchConfig,
IndexedType indexedType,
Index index) |
void |
DefaultIndexer.removeItemsByQuery(FacetSearchConfig facetSearchConfig,
IndexedType indexedType,
Index index,
String query)
Deprecated.
Since 6.2.
|
void |
DefaultIndexer.swapIndexTypes(FacetSearchConfig facetSearchConfig,
IndexedType stagedIndexedType)
Deprecated.
Since 6.2.
|
void |
IndexationInLanguageContextTest.testIndexInEnglish() |
void |
IndexationInLanguageContextTest.testIndexInGerman() |
void |
IndexationInUserContextTest.testQueryNotPermittedAttribute() |
void |
DefaultIndexerService.updateIndex(FacetSearchConfig facetSearchConfig) |
void |
DefaultIndexerService.updateIndex(FacetSearchConfig facetSearchConfig,
Map<String,String> indexerHints) |
void |
DefaultIndexerService.updatePartialTypeIndex(FacetSearchConfig facetSearchConfig,
IndexedType indexedType,
Collection<IndexedProperty> indexedProperties,
List<PK> pks) |
void |
DefaultIndexerService.updatePartialTypeIndex(FacetSearchConfig facetSearchConfig,
IndexedType indexedType,
Collection<IndexedProperty> indexedProperties,
List<PK> pks,
Map<String,String> indexerHints) |
void |
DefaultIndexerService.updateTypeIndex(FacetSearchConfig facetSearchConfig,
IndexedType indexedType) |
void |
DefaultIndexerService.updateTypeIndex(FacetSearchConfig facetSearchConfig,
IndexedType indexedType,
List<PK> pks) |
void |
DefaultIndexerService.updateTypeIndex(FacetSearchConfig facetSearchConfig,
IndexedType indexedType,
List<PK> pks,
Map<String,String> indexerHints) |
void |
DefaultIndexerService.updateTypeIndex(FacetSearchConfig facetSearchConfig,
IndexedType indexedType,
Map<String,String> indexerHints) |
| Modifier and Type | Method and Description |
|---|---|
void |
SessionInitializationListener.afterBatch(IndexerBatchContext batchContext) |
void |
CommitModeListener.afterBatch(IndexerBatchContext batchContext) |
void |
SessionInitializationListener.afterBatchError(IndexerBatchContext batchContext) |
void |
CommitModeListener.afterBatchError(IndexerBatchContext batchContext) |
void |
SessionInitializationListener.afterIndex(IndexerContext context) |
void |
ConfigurationExporterListener.afterIndex(IndexerContext context)
Deprecated.
|
void |
OptimizeModeListener.afterIndex(IndexerContext context) |
void |
IndexOperationStrategyListener.afterIndex(IndexerContext context)
Deprecated.
|
void |
CommitModeListener.afterIndex(IndexerContext context) |
void |
IndexerOperationListener.afterIndex(IndexerContext context) |
void |
SessionInitializationListener.afterIndexError(IndexerContext context) |
void |
ConfigurationExporterListener.afterIndexError(IndexerContext context)
Deprecated.
|
void |
OptimizeModeListener.afterIndexError(IndexerContext context) |
void |
IndexOperationStrategyListener.afterIndexError(IndexerContext context)
Deprecated.
|
void |
CommitModeListener.afterIndexError(IndexerContext context) |
void |
IndexerOperationListener.afterIndexError(IndexerContext context) |
void |
IndexerOperationListener.afterPrepareContext(IndexerContext context) |
void |
SessionInitializationListener.afterQuery(IndexerQueryContext queryContext) |
void |
SessionInitializationListener.afterQueryError(IndexerQueryContext queryContext) |
void |
SessionInitializationListener.beforeBatch(IndexerBatchContext batchContext) |
void |
CommitModeListener.beforeBatch(IndexerBatchContext batchContext) |
void |
SessionInitializationListener.beforeIndex(IndexerContext context) |
void |
ConfigurationExporterListener.beforeIndex(IndexerContext context)
Deprecated.
|
void |
OptimizeModeListener.beforeIndex(IndexerContext context) |
void |
IndexOperationStrategyListener.beforeIndex(IndexerContext context)
Deprecated.
|
void |
CommitModeListener.beforeIndex(IndexerContext context) |
void |
IndexerOperationListener.beforeIndex(IndexerContext context) |
void |
SessionInitializationListener.beforeQuery(IndexerQueryContext queryContext) |
protected void |
CommitModeListener.commit(FacetSearchConfig facetSearchConfig,
IndexedType indexedType,
Index index,
SolrSearchProvider.CommitType commitType) |
protected void |
OptimizeModeListener.optimize(FacetSearchConfig facetSearchConfig,
IndexedType indexedType,
Index index) |
protected String |
IndexerOperationListener.resolveStagedQualifier(Index index) |
| Modifier and Type | Method and Description |
|---|---|
void |
Indexer.commit(FacetSearchConfig facetSearchConfig,
IndexedType indexedType,
Index index,
Indexer.CommitType commitType)
Deprecated.
since 6.2, use
SolrSearchProvider.commit(Index, SolrSearchProvider.CommitType) instead |
Collection<SolrInputDocument> |
Indexer.indexItems(Collection<ItemModel> items,
FacetSearchConfig facetSearchConfig,
IndexedType indexedType)
Method send items to indexer.
|
Collection<SolrInputDocument> |
Indexer.indexItems(Collection<ItemModel> items,
FacetSearchConfig facetSearchConfig,
IndexedType indexedType,
Collection<IndexedProperty> indexedProperties)
Method send items to indexer.
|
void |
Indexer.optimize(FacetSearchConfig facetSearchConfig,
IndexedType indexedType,
Index index)
Deprecated.
since 6.2, use
SolrSearchProvider.optimize(Index) instead |
void |
Indexer.removeAllItems(FacetSearchConfig facetSearchConfig,
IndexedType indexedType,
Index index)
Deprecated.
since 6.2, use
SolrSearchProvider.deleteAllDocuments(Index) instead |
Collection<String> |
Indexer.removeItems(Collection<ItemModel> items,
FacetSearchConfig facetSearchConfig,
IndexedType indexedType)
Deprecated.
since 6.3, use
SolrSearchProvider#deleteDocumentsByPK(Index, List) instead |
void |
Indexer.removeItemsByPk(Collection<PK> pks,
FacetSearchConfig facetSearchConfig,
IndexedType indexedType,
Index index) |
void |
Indexer.removeItemsByQuery(FacetSearchConfig facetSearchConfig,
IndexedType indexedType,
Index index,
String query)
Deprecated.
since 6.2, use
SolrSearchProvider.deleteOldDocuments(Index, long) instead |
| Modifier and Type | Method and Description |
|---|---|
IndexerBatchStrategy |
IndexerBatchStrategyFactory.createIndexerBatchStrategy(FacetSearchConfig facetSearchConfig)
Create new IndexerBatchStrategy.
|
IndexerStrategy |
IndexerStrategyFactory.createIndexerStrategy(FacetSearchConfig facetSearchConfig)
Creates a new indexer strategy.
|
IndexOperationStrategy |
IndexOperationStrategyFactory.createIndexOperationStrategy(IndexOperation indexOperation,
FacetSearchConfig facetSearchConfig)
Deprecated.
Creates a new index operation strategy.
|
void |
IndexerStrategy.execute()
Executes the strategy.
|
void |
IndexerBatchStrategy.execute()
Executes the strategy.
|
| Modifier and Type | Method and Description |
|---|---|
void |
NoOpIndexOperationStrategy.afterIndex(IndexerContext context)
Deprecated.
|
void |
UpdateIndexOperationStrategy.afterIndex(IndexerContext context)
Deprecated.
|
void |
FullTwoPhaseIndexOperationStrategy.afterIndex(IndexerContext context)
Deprecated.
|
void |
FullDirectIndexOperationStrategy.afterIndex(IndexerContext context)
Deprecated.
|
void |
NoOpIndexOperationStrategy.afterIndexError(IndexerContext context)
Deprecated.
|
void |
UpdateIndexOperationStrategy.afterIndexError(IndexerContext context)
Deprecated.
|
void |
FullTwoPhaseIndexOperationStrategy.afterIndexError(IndexerContext context)
Deprecated.
|
void |
FullDirectIndexOperationStrategy.afterIndexError(IndexerContext context)
Deprecated.
|
void |
NoOpIndexOperationStrategy.beforeIndex(IndexerContext context)
Deprecated.
|
void |
UpdateIndexOperationStrategy.beforeIndex(IndexerContext context)
Deprecated.
|
void |
FullTwoPhaseIndexOperationStrategy.beforeIndex(IndexerContext context)
Deprecated.
|
void |
FullDirectIndexOperationStrategy.beforeIndex(IndexerContext context)
Deprecated.
|
IndexerBatchStrategy |
DefaultIndexerBatchStrategyFactory.createIndexerBatchStrategy(FacetSearchConfig facetSearchConfig) |
protected FlexibleSearchQuerySpec |
AbstractIndexerStrategy.createIndexerQuery() |
IndexerStrategy |
DefaultIndexerStrategyFactory.createIndexerStrategy(FacetSearchConfig facetSearchConfig) |
protected IndexerWorker |
DefaultIndexerStrategy.createIndexerWorker(IndexerContext indexerContext,
long workerNumber,
List<PK> workerPks) |
IndexOperationStrategy |
DefaultIndexOperationStrategyFactory.createIndexOperationStrategy(IndexOperation indexOperation,
FacetSearchConfig facetSearchConfig)
Deprecated.
|
protected void |
DefaultIndexerStrategy.doExecute(IndexerContext indexerContext) |
protected void |
DistributedIndexerStrategy.doExecute(IndexerContext indexerContext) |
protected abstract void |
AbstractIndexerStrategy.doExecute(IndexerContext indexerContext) |
protected void |
AbstractIndexerStrategy.doExecute(Index resolvedIndex,
long indexOperationId,
boolean isExternalIndexOperation) |
void |
DefaultIndexerBatchStrategy.execute() |
void |
AbstractIndexerStrategy.execute() |
protected void |
DefaultIndexerBatchStrategy.executeIndexerOperation(IndexerBatchContext batchContext) |
protected List<ItemModel> |
DefaultIndexerBatchStrategy.executeIndexerQuery(FacetSearchConfig facetSearchConfig,
IndexedType indexedType,
List<PK> pks) |
protected List<PK> |
AbstractIndexerStrategy.executeIndexerQuery(FacetSearchConfig facetSearchConfig,
IndexedType indexedType,
String query,
Map<String,Object> queryParameters) |
protected Index |
AbstractIndexerStrategy.resolveIndex() |
protected List<PK> |
AbstractIndexerStrategy.resolvePks() |
protected void |
DefaultIndexerStrategy.runWorkers(IndexerContext indexerContext,
ExecutorCompletionService<Integer> completionService,
List<DefaultIndexerStrategy.IndexerWorkerWrapper> workers,
int retriesLeft) |
protected void |
DistributedIndexerStrategy.waitForDistributedIndexer(String processCode) |
| Modifier and Type | Method and Description |
|---|---|
IndexerWorker |
IndexerWorkerFactory.createIndexerWorker(FacetSearchConfig facetSearchConfig)
Creates a new indexer worker.
|
| Modifier and Type | Method and Description |
|---|---|
IndexerWorker |
DefaultIndexerWorkerFactory.createIndexerWorker(FacetSearchConfig facetSearchConfig) |
protected void |
DefaultIndexerWorker.doRun() |
| Modifier and Type | Method and Description |
|---|---|
void |
SolrIndexHotUpdateTest.shouldChangeLastIndexTimeWhenFullIndex() |
void |
SolrIndexHotUpdateTest.shouldNotChangeLastIndexTimeWhenPartialUpdate() |
void |
SolrSynonymsIntegrationTest.testAddingSynonyms() |
void |
IndexAndSearchFromMultipleCatalogVersionsTest.testIndexTwoCatalogVersionsSearchInOneCatalogVersion() |
void |
IndexAndSearchFromMultipleCatalogVersionsTest.testIndexTwoCatalogVersionsSearchInOneSessionCatalogVersion() |
void |
IndexAndSearchFromMultipleCatalogVersionsTest.testIndexTwoCatalogVersionsSearchInThird() |
void |
IndexAndSearchFromMultipleCatalogVersionsTest.testIndexTwoCatalogVersionsSearchInTwoCatalogVersions() |
void |
IndexAndSearchFromMultipleCatalogVersionsTest.testIndexTwoCatalogVersionsSearchInTwoOthers() |
void |
IndexAndSearchFromMultipleCatalogVersionsTest.testIndexTwoCatalogVersionsSearchInTwoSessionCatalogVersions() |
void |
SolrSynonymsIntegrationTest.testRemoveSynonyms() |
void |
SolrStopWordsIntegrationTest.testSearchForStopWordAfterUpdate() |
void |
SolrStopWordsIntegrationTest.testSearchForStopWordBeforeUpdate() |
void |
SolrStopWordsIntegrationTest.testSearchForStopWordInOtherLanguage() |
void |
SolrSynonymsIntegrationTest.testSearchForSynonymBeforeUpdate() |
void |
SolrSynonymsIntegrationTest.testUpdateSynonyms() |
| Modifier and Type | Method and Description |
|---|---|
void |
SolrSearchResultTest.testGetResultData() |
void |
SolrSearchResultTest.testGetResultDataWithPostProcessors() |
Copyright © 2017 SAP SE. All Rights Reserved.