Uses of Class
org.apache.solr.core.SolrCore

Packages that use SolrCore
org.apache.solr.client.solrj.embedded SolrJ client implementations for embedded solr access. 
org.apache.solr.cloud Classes for dealing with ZooKeeper when operating in SolrCloud mode. 
org.apache.solr.core Core classes implementin Solr internals and the management of SolrCore
org.apache.solr.handler Concrete implementations of SolrRequestHandler 
org.apache.solr.handler.admin SolrRequestHandler implementations for powering he Solr Admin UI 
org.apache.solr.handler.component SearchComponent implementations for use in SearchHandler 
org.apache.solr.highlight SolrHighlighter API and related implementaions and utilities 
org.apache.solr.request APIs and classes for dealing with Solr requests 
org.apache.solr.schema IndexSchema and FieldType implementations for powering schema.xml 
org.apache.solr.search APIs and classes for parsing and processing search requests 
org.apache.solr.search.similarities Factories for various built-in Lucene ranking models. 
org.apache.solr.servlet Servlet related classes for powering the Solr HTTP API 
org.apache.solr.spelling APIs and classes used by the SpellCheckComponent 
org.apache.solr.spelling.suggest APIs and classes used by the SpellCheckComponent 
org.apache.solr.spelling.suggest.fst Factories for FST and Analyzing based Suggester
org.apache.solr.spelling.suggest.jaspell Factories for JaSpell based Suggester
org.apache.solr.spelling.suggest.tst Factories for TST based Suggester
org.apache.solr.update APIs and classes for managing index updates 
org.apache.solr.update.processor UpdateRequestProcessorFactory APIs and implementations for use in UpdateRequestProcessorChain
org.apache.solr.util.plugin Common APIs related to implementing Solr plugins 
 

Uses of SolrCore in org.apache.solr.client.solrj.embedded
 

Constructors in org.apache.solr.client.solrj.embedded with parameters of type SolrCore
EmbeddedSolrServer(SolrCore core)
          Deprecated. use EmbeddedSolrServer.EmbeddedSolrServer(CoreContainer, String) instead.
 

Uses of SolrCore in org.apache.solr.cloud
 

Methods in org.apache.solr.cloud with parameters of type SolrCore
 void RecoveryStrategy.doRecovery(SolrCore core)
           
 boolean SyncStrategy.sync(ZkController zkController, SolrCore core, ZkNodeProps leaderProps)
           
 

Uses of SolrCore in org.apache.solr.core
 

Fields in org.apache.solr.core declared as SolrCore
protected  SolrCore RequestHandlers.core
           
 

Fields in org.apache.solr.core with type parameters of type SolrCore
static Map<SolrCore,Exception> SolrCore.openHandles
           
 

Methods in org.apache.solr.core that return SolrCore
 SolrCore CoreContainer.create(CoreDescriptor dcore)
          Creates a new core based on a descriptor but does not register it.
 SolrCore AbstractSolrEventListener.getCore()
           
 SolrCore CoreContainer.getCore(String name)
          Gets a core by name and increase its refcount.
 SolrCore CoreContainer.register(SolrCore core, boolean returnPrev)
          Registers a SolrCore descriptor in the registry using the core's name.
 SolrCore CoreContainer.register(String name, SolrCore core, boolean returnPrev)
           
protected  SolrCore CoreContainer.registerCore(boolean isTransientCore, String name, SolrCore core, boolean returnPrevNotClosed)
           
 SolrCore SolrCore.reload(SolrCore prev)
           
 SolrCore SolrCore.reload(SolrResourceLoader resourceLoader, SolrCore prev)
           
 SolrCore CoreContainer.remove(String name)
          Removes and returns registered core w/o decrementing it's reference count
 

Methods in org.apache.solr.core that return types with arguments of type SolrCore
 Collection<SolrCore> CoreContainer.getCores()
           
 

Methods in org.apache.solr.core with parameters of type SolrCore
 Collection<String> CoreContainer.getCoreNames(SolrCore core)
          This method is currently experimental.
 void SolrResourceLoader.inform(SolrCore core)
          Tell all SolrCoreAware instances about the SolrCore
 void SchemaCodecFactory.inform(SolrCore core)
           
abstract  DirectoryReader IndexReaderFactory.newReader(Directory indexDir, SolrCore core)
          Creates a new IndexReader instance using the given Directory.
 DirectoryReader StandardIndexReaderFactory.newReader(Directory indexDir, SolrCore core)
           
abstract  DirectoryReader IndexReaderFactory.newReader(IndexWriter writer, SolrCore core)
          Creates a new IndexReader instance using the given IndexWriter.
 DirectoryReader StandardIndexReaderFactory.newReader(IndexWriter writer, SolrCore core)
           
abstract  void CloseHook.postClose(SolrCore core)
          Method called when the given SolrCore object has been shut down and update handlers and searchers are closed
Use this method for post-close clean up operations e.g.
abstract  void CloseHook.preClose(SolrCore core)
          Method called when the given SolrCore object is closing / shutting down but before the update handler and searcher(s) are actually closed
Important: Keep the method implementation as short as possible.
 SolrCore CoreContainer.register(SolrCore core, boolean returnPrev)
          Registers a SolrCore descriptor in the registry using the core's name.
 SolrCore CoreContainer.register(String name, SolrCore core, boolean returnPrev)
           
protected  SolrCore CoreContainer.registerCore(boolean isTransientCore, String name, SolrCore core, boolean returnPrevNotClosed)
           
 void ZkContainer.registerInZk(SolrCore core)
           
 SolrCore SolrCore.reload(SolrCore prev)
           
 SolrCore SolrCore.reload(SolrResourceLoader resourceLoader, SolrCore prev)
           
 

Method parameters in org.apache.solr.core with type arguments of type SolrCore
 void ZkContainer.publishCoresAsDown(List<SolrCore> cores)
           
 

Constructors in org.apache.solr.core with parameters of type SolrCore
AbstractSolrEventListener(SolrCore core)
           
QuerySenderListener(SolrCore core)
           
RequestHandlers.LazyRequestHandlerWrapper(SolrCore core, String className, NamedList args)
           
RequestHandlers(SolrCore core)
           
SolrCore.LazyQueryResponseWriterWrapper(SolrCore core, String className, NamedList args)
           
SolrCore(String name, String dataDir, SolrConfig config, IndexSchema schema, CoreDescriptor cd, UpdateHandler updateHandler, IndexDeletionPolicyWrapper delPolicy, SolrCore prev)
          Creates a new core and register it in the list of cores.
 

Uses of SolrCore in org.apache.solr.handler
 

Methods in org.apache.solr.handler with parameters of type SolrCore
 void PingRequestHandler.inform(SolrCore core)
           
 void ReplicationHandler.inform(SolrCore core)
           
 

Constructors in org.apache.solr.handler with parameters of type SolrCore
SnapPuller(NamedList initArgs, ReplicationHandler handler, SolrCore sc)
           
SnapShooter(SolrCore core, String location)
           
 

Uses of SolrCore in org.apache.solr.handler.admin
 

Methods in org.apache.solr.handler.admin with parameters of type SolrCore
 void LoggingHandler.inform(SolrCore core)
           
 void AdminHandlers.inform(SolrCore core)
           
 

Uses of SolrCore in org.apache.solr.handler.component
 

Methods in org.apache.solr.handler.component with parameters of type SolrCore
static SolrHighlighter HighlightComponent.getHighlighter(SolrCore core)
           
static SolrInputDocument RealTimeGetComponent.getInputDocument(SolrCore core, BytesRef idBytes)
           
 void HighlightComponent.inform(SolrCore core)
           
 void QueryElevationComponent.inform(SolrCore core)
           
 void TermVectorComponent.inform(SolrCore core)
           
 void SpellCheckComponent.inform(SolrCore core)
           
 void SearchHandler.inform(SolrCore core)
          Initialize the components based on name.
 

Uses of SolrCore in org.apache.solr.highlight
 

Constructors in org.apache.solr.highlight with parameters of type SolrCore
DefaultSolrHighlighter(SolrCore solrCore)
           
 

Uses of SolrCore in org.apache.solr.request
 

Fields in org.apache.solr.request declared as SolrCore
protected  SolrCore SolrQueryRequestBase.core
           
 

Methods in org.apache.solr.request that return SolrCore
 SolrCore SolrQueryRequestBase.getCore()
           
 SolrCore SolrQueryRequest.getCore()
          The solr core (coordinator, etc) associated with this request
 

Constructors in org.apache.solr.request with parameters of type SolrCore
LocalSolrQueryRequest(SolrCore core, Map<String,String[]> args)
           
LocalSolrQueryRequest(SolrCore core, NamedList args)
           
LocalSolrQueryRequest(SolrCore core, SolrParams args)
           
LocalSolrQueryRequest(SolrCore core, String query, String qtype, int start, int limit, Map args)
           
SolrQueryRequestBase(SolrCore core, SolrParams params)
           
 

Uses of SolrCore in org.apache.solr.schema
 

Methods in org.apache.solr.schema with parameters of type SolrCore
 void ManagedIndexSchemaFactory.inform(SolrCore core)
           
 

Constructors in org.apache.solr.schema with parameters of type SolrCore
ExternalFileFieldReloader(SolrCore core)
           
 

Uses of SolrCore in org.apache.solr.search
 

Methods in org.apache.solr.search that return SolrCore
 SolrCore SolrIndexSearcher.getCore()
           
 

Constructors in org.apache.solr.search with parameters of type SolrCore
SolrIndexSearcher(SolrCore core, String path, IndexSchema schema, SolrIndexConfig config, String name, boolean enableCache, DirectoryFactory directoryFactory)
           
SolrIndexSearcher(SolrCore core, String path, IndexSchema schema, SolrIndexConfig config, String name, DirectoryReader r, boolean closeReader, boolean enableCache, boolean reserveDirectory, DirectoryFactory directoryFactory)
           
 

Uses of SolrCore in org.apache.solr.search.similarities
 

Methods in org.apache.solr.search.similarities with parameters of type SolrCore
 void SchemaSimilarityFactory.inform(SolrCore core)
           
 

Uses of SolrCore in org.apache.solr.servlet
 

Fields in org.apache.solr.servlet declared as SolrCore
protected  SolrCore DirectSolrConnection.core
           
 

Methods in org.apache.solr.servlet with parameters of type SolrCore
 SolrQueryRequest SolrRequestParsers.buildRequestFrom(SolrCore core, SolrParams params, Collection<ContentStream> streams)
           
 SolrQueryRequest SolrRequestParsers.parse(SolrCore core, String path, javax.servlet.http.HttpServletRequest req)
           
protected  void SolrDispatchFilter.sendError(SolrCore core, SolrQueryRequest req, javax.servlet.ServletRequest request, javax.servlet.http.HttpServletResponse response, Throwable ex)
           
 

Constructors in org.apache.solr.servlet with parameters of type SolrCore
DirectSolrConnection(SolrCore c)
          Initialize using an explicit SolrCore
 

Uses of SolrCore in org.apache.solr.spelling
 

Methods in org.apache.solr.spelling with parameters of type SolrCore
abstract  void SolrSpellChecker.build(SolrCore core, SolrIndexSearcher searcher)
          (re)Builds the spelling index.
 void WordBreakSolrSpellChecker.build(SolrCore core, SolrIndexSearcher searcher)
           
 void DirectSolrSpellChecker.build(SolrCore core, SolrIndexSearcher searcher)
           
 void ConjunctionSolrSpellChecker.build(SolrCore core, SolrIndexSearcher searcher)
           
 void FileBasedSpellChecker.build(SolrCore core, SolrIndexSearcher searcher)
           
 void IndexBasedSpellChecker.build(SolrCore core, SolrIndexSearcher searcher)
           
 String SolrSpellChecker.init(NamedList config, SolrCore core)
           
 String WordBreakSolrSpellChecker.init(NamedList config, SolrCore core)
           
 String DirectSolrSpellChecker.init(NamedList config, SolrCore core)
           
 String ConjunctionSolrSpellChecker.init(NamedList config, SolrCore core)
           
 String AbstractLuceneSpellChecker.init(NamedList config, SolrCore core)
           
 String FileBasedSpellChecker.init(NamedList config, SolrCore core)
           
 String IndexBasedSpellChecker.init(NamedList config, SolrCore core)
           
abstract  void SolrSpellChecker.reload(SolrCore core, SolrIndexSearcher searcher)
          Reloads the index.
 void WordBreakSolrSpellChecker.reload(SolrCore core, SolrIndexSearcher searcher)
           
 void DirectSolrSpellChecker.reload(SolrCore core, SolrIndexSearcher searcher)
           
 void ConjunctionSolrSpellChecker.reload(SolrCore core, SolrIndexSearcher searcher)
           
 void AbstractLuceneSpellChecker.reload(SolrCore core, SolrIndexSearcher searcher)
           
 void IndexBasedSpellChecker.reload(SolrCore core, SolrIndexSearcher searcher)
           
 

Uses of SolrCore in org.apache.solr.spelling.suggest
 

Fields in org.apache.solr.spelling.suggest declared as SolrCore
protected  SolrCore Suggester.core
           
 

Methods in org.apache.solr.spelling.suggest with parameters of type SolrCore
 void Suggester.build(SolrCore core, SolrIndexSearcher searcher)
           
abstract  Lookup LookupFactory.create(NamedList params, SolrCore core)
           
 String Suggester.init(NamedList config, SolrCore core)
           
 void Suggester.reload(SolrCore core, SolrIndexSearcher searcher)
           
 

Uses of SolrCore in org.apache.solr.spelling.suggest.fst
 

Methods in org.apache.solr.spelling.suggest.fst with parameters of type SolrCore
 Lookup FSTLookupFactory.create(NamedList params, SolrCore core)
           
 Lookup AnalyzingLookupFactory.create(NamedList params, SolrCore core)
           
 Lookup FuzzyLookupFactory.create(NamedList params, SolrCore core)
           
 Lookup WFSTLookupFactory.create(NamedList params, SolrCore core)
           
 

Uses of SolrCore in org.apache.solr.spelling.suggest.jaspell
 

Methods in org.apache.solr.spelling.suggest.jaspell with parameters of type SolrCore
 Lookup JaspellLookupFactory.create(NamedList params, SolrCore core)
           
 

Uses of SolrCore in org.apache.solr.spelling.suggest.tst
 

Methods in org.apache.solr.spelling.suggest.tst with parameters of type SolrCore
 Lookup TSTLookupFactory.create(NamedList params, SolrCore core)
           
 

Uses of SolrCore in org.apache.solr.update
 

Fields in org.apache.solr.update declared as SolrCore
protected  SolrCore UpdateHandler.core
           
 

Fields in org.apache.solr.update with type parameters of type SolrCore
 List<SolrCore> SplitIndexCommand.cores
           
 

Methods in org.apache.solr.update with parameters of type SolrCore
 void HdfsUpdateLog.clearLog(SolrCore core, PluginInfo ulogPluginInfo)
          Clears the logs on the file system.
 void UpdateLog.clearLog(SolrCore core, PluginInfo ulogPluginInfo)
          Clears the logs on the file system.
abstract  void SolrCoreState.closeIndexWriter(SolrCore core, boolean rollback)
          Expert method that closes the IndexWriter - you must call SolrCoreState.openIndexWriter(SolrCore) in a finally block after calling this method.
 void DefaultSolrCoreState.closeIndexWriter(SolrCore core, boolean rollback)
           
protected  SolrIndexWriter DefaultSolrCoreState.createMainIndexWriter(SolrCore core, String name)
           
abstract  RefCounted<IndexWriter> SolrCoreState.getIndexWriter(SolrCore core)
          Get the current IndexWriter.
 RefCounted<IndexWriter> DefaultSolrCoreState.getIndexWriter(SolrCore core)
           
protected  String UpdateLog.getTlogDir(SolrCore core, PluginInfo info)
           
 void HdfsUpdateLog.init(UpdateHandler uhandler, SolrCore core)
           
 void UpdateLog.init(UpdateHandler uhandler, SolrCore core)
           
abstract  void SolrCoreState.newIndexWriter(SolrCore core, boolean rollback)
          Force the creation of a new IndexWriter using the settings from the given SolrCore.
 void DefaultSolrCoreState.newIndexWriter(SolrCore core, boolean rollback)
           
abstract  void SolrCoreState.openIndexWriter(SolrCore core)
          Expert method that opens the IndexWriter - you must call SolrCoreState.closeIndexWriter(SolrCore, boolean) first, and then call this method in a finally block.
 void DefaultSolrCoreState.openIndexWriter(SolrCore core)
           
abstract  void SolrCoreState.rollbackIndexWriter(SolrCore core)
          Rollback the current IndexWriter.
 void DefaultSolrCoreState.rollbackIndexWriter(SolrCore core)
           
static void PeerSync.sync(SolrCore core, List<String> replicas, int nUpdates)
          Requests and applies recent updates from peers
 

Constructors in org.apache.solr.update with parameters of type SolrCore
CommitTracker(String name, SolrCore core, int docsUpperBound, int timeUpperBound, boolean openSearcher, boolean softCommit)
           
DirectUpdateHandler2(SolrCore core)
           
DirectUpdateHandler2(SolrCore core, UpdateHandler updateHandler)
           
PeerSync(SolrCore core, List<String> replicas, int nUpdates)
           
PeerSync(SolrCore core, List<String> replicas, int nUpdates, boolean cantReachIsSuccess, boolean getNoVersionsIsSuccess)
           
UpdateHandler(SolrCore core)
           
UpdateHandler(SolrCore core, UpdateLog updateLog)
           
 

Constructor parameters in org.apache.solr.update with type arguments of type SolrCore
SplitIndexCommand(SolrQueryRequest req, List<String> paths, List<SolrCore> cores, List<DocRouter.Range> ranges, DocRouter router)
           
 

Uses of SolrCore in org.apache.solr.update.processor
 

Methods in org.apache.solr.update.processor with parameters of type SolrCore
static FieldMutatingUpdateProcessor.FieldNameSelector FieldMutatingUpdateProcessor.createFieldNameSelector(SolrResourceLoader loader, SolrCore core, FieldMutatingUpdateProcessorFactory.SelectorParams params, FieldMutatingUpdateProcessor.FieldNameSelector defSelector)
          Utility method that can be used to define a FieldNameSelector using the same types of rules as the FieldMutatingUpdateProcessor init code.
 FieldMutatingUpdateProcessor.FieldNameSelector MaxFieldValueUpdateProcessorFactory.getDefaultSelector(SolrCore core)
           
 FieldMutatingUpdateProcessor.FieldNameSelector ParseDateFieldUpdateProcessorFactory.getDefaultSelector(SolrCore core)
          Returns true if the field doesn't match any schema field or dynamic field, or if the matched field's type is BoolField
 FieldMutatingUpdateProcessor.FieldNameSelector MinFieldValueUpdateProcessorFactory.getDefaultSelector(SolrCore core)
           
 FieldMutatingUpdateProcessor.FieldNameSelector IgnoreFieldUpdateProcessorFactory.getDefaultSelector(SolrCore core)
           
protected  FieldMutatingUpdateProcessor.FieldNameSelector RegexReplaceProcessorFactory.getDefaultSelector(SolrCore core)
           
 FieldMutatingUpdateProcessor.FieldNameSelector FieldLengthUpdateProcessorFactory.getDefaultSelector(SolrCore core)
           
 FieldMutatingUpdateProcessor.FieldNameSelector LastFieldValueUpdateProcessorFactory.getDefaultSelector(SolrCore core)
           
protected  FieldMutatingUpdateProcessor.FieldNameSelector FieldMutatingUpdateProcessorFactory.getDefaultSelector(SolrCore core)
          Defines the default selection behavior when the user has not configured any specific criteria for selecting fields.
 FieldMutatingUpdateProcessor.FieldNameSelector TruncateFieldUpdateProcessorFactory.getDefaultSelector(SolrCore core)
           
 FieldMutatingUpdateProcessor.FieldNameSelector FirstFieldValueUpdateProcessorFactory.getDefaultSelector(SolrCore core)
           
 FieldMutatingUpdateProcessor.FieldNameSelector ParseNumericFieldUpdateProcessorFactory.getDefaultSelector(SolrCore core)
          Returns true if the field doesn't match any schema field or dynamic field, or if the matched field's type is compatible
 FieldMutatingUpdateProcessor.FieldNameSelector ConcatFieldUpdateProcessorFactory.getDefaultSelector(SolrCore core)
           
 FieldMutatingUpdateProcessor.FieldNameSelector UniqFieldsUpdateProcessorFactory.getDefaultSelector(SolrCore core)
           
 FieldMutatingUpdateProcessor.FieldNameSelector HTMLStripFieldUpdateProcessorFactory.getDefaultSelector(SolrCore core)
           
 FieldMutatingUpdateProcessor.FieldNameSelector ParseBooleanFieldUpdateProcessorFactory.getDefaultSelector(SolrCore core)
          Returns true if the field doesn't match any schema field or dynamic field, or if the matched field's type is BoolField
 void AddSchemaFieldsUpdateProcessorFactory.inform(SolrCore core)
           
 void FieldMutatingUpdateProcessorFactory.inform(SolrCore core)
           
 void StatelessScriptUpdateProcessorFactory.inform(SolrCore core)
           
 void SignatureUpdateProcessorFactory.inform(SolrCore core)
           
 void PreAnalyzedUpdateProcessorFactory.inform(SolrCore core)
           
 void CloneFieldUpdateProcessorFactory.inform(SolrCore core)
           
 

Constructors in org.apache.solr.update.processor with parameters of type SolrCore
UpdateRequestProcessorChain(SolrCore solrCore)
           
UpdateRequestProcessorChain(UpdateRequestProcessorFactory[] chain, SolrCore solrCore)
          Creates a chain backed directly by the specified array.
 

Uses of SolrCore in org.apache.solr.util.plugin
 

Methods in org.apache.solr.util.plugin with parameters of type SolrCore
 void SolrCoreAware.inform(SolrCore core)
           
 



Copyright © 2000-2013 Apache Software Foundation. All Rights Reserved.