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

Packages that use SolrCore
org.apache.solr.client.solrj.embedded   
org.apache.solr.core   
org.apache.solr.handler   
org.apache.solr.handler.admin   
org.apache.solr.handler.component   
org.apache.solr.highlight   
org.apache.solr.request   
org.apache.solr.search   
org.apache.solr.servlet   
org.apache.solr.spelling   
org.apache.solr.update   
org.apache.solr.update.processor   
org.apache.solr.util   
org.apache.solr.util.plugin   
 

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.  
 

Uses of SolrCore in org.apache.solr.core
 

Fields in org.apache.solr.core with type parameters of type SolrCore
protected  WeakReference<SolrCore> CoreContainer.adminCore
           
protected  Map<String,SolrCore> CoreContainer.cores
           
 

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 CoreContainer.getAdminCore()
          Deprecated. 
 SolrCore CoreContainer.getCore(String name)
          Gets a core by name and increase its refcount.
static SolrCore SolrCore.getSolrCore()
          Deprecated. Use CoreContainer.getCore(String) instead.
 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 returnPrevNotClosed)
          Registers a SolrCore descriptor in the registry using the specified name.
 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
 void CloseHook.close(SolrCore core)
          Method called when the given SolrCore object is closing / shutting down.
 Collection<String> CoreContainer.getCoreNames(SolrCore core)
          This method is currently experimental.
 SolrQueryRequest SolrConfig.getPingQueryRequest(SolrCore core)
          Deprecated. use PingRequestHandler instead
 void SolrResourceLoader.inform(SolrCore core)
          Tell all SolrCoreAware instances about the SolrCore
 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 returnPrevNotClosed)
          Registers a SolrCore descriptor in the registry using the specified name.
 void CoreContainer.setAdminCore(SolrCore core)
          Deprecated. 
 

Uses of SolrCore in org.apache.solr.handler
 

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

Constructors in org.apache.solr.handler with parameters of type SolrCore
SnapPuller(org.apache.solr.common.util.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 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
 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, org.apache.solr.common.util.NamedList args)
           
LocalSolrQueryRequest(SolrCore core, org.apache.solr.common.params.SolrParams args)
           
LocalSolrQueryRequest(SolrCore core, String query, String qtype, int start, int limit, Map args)
           
SolrQueryRequestBase(SolrCore core, org.apache.solr.common.params.SolrParams params)
           
 

Uses of SolrCore in org.apache.solr.search
 

Constructors in org.apache.solr.search with parameters of type SolrCore
SolrIndexSearcher(SolrCore core, IndexSchema schema, String name, Directory directory, boolean enableCache)
           
SolrIndexSearcher(SolrCore core, IndexSchema schema, String name, Directory directory, boolean readOnly, boolean enableCache)
          Creates a searcher searching the index in the provided directory.
SolrIndexSearcher(SolrCore core, IndexSchema schema, String name, IndexReader r, boolean enableCache)
          Creates a searcher searching the provided index.
SolrIndexSearcher(SolrCore core, IndexSchema schema, String name, IndexReader r, boolean closeReader, boolean enableCache)
           
SolrIndexSearcher(SolrCore core, IndexSchema schema, String name, String path, boolean enableCache)
          Deprecated. use alternate constructor
 

Uses of SolrCore in org.apache.solr.servlet
 

Methods in org.apache.solr.servlet with parameters of type SolrCore
 SolrQueryRequest SolrRequestParsers.buildRequestFrom(SolrCore core, org.apache.solr.common.params.SolrParams params, Collection<org.apache.solr.common.util.ContentStream> streams)
           
 SolrQueryRequest SolrRequestParsers.parse(SolrCore core, String path, javax.servlet.http.HttpServletRequest req)
           
 

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
 void IndexBasedSpellChecker.build(SolrCore core, SolrIndexSearcher searcher)
           
 void FileBasedSpellChecker.build(SolrCore core, SolrIndexSearcher searcher)
           
abstract  void SolrSpellChecker.build(SolrCore core, SolrIndexSearcher searcher)
          (re)Builds the spelling index.
 String IndexBasedSpellChecker.init(org.apache.solr.common.util.NamedList config, SolrCore core)
           
 String AbstractLuceneSpellChecker.init(org.apache.solr.common.util.NamedList config, SolrCore core)
           
 String FileBasedSpellChecker.init(org.apache.solr.common.util.NamedList config, SolrCore core)
           
 String SolrSpellChecker.init(org.apache.solr.common.util.NamedList config, SolrCore core)
           
 

Uses of SolrCore in org.apache.solr.update
 

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

Constructors in org.apache.solr.update with parameters of type SolrCore
DirectUpdateHandler(SolrCore core)
          Deprecated.  
DirectUpdateHandler2(SolrCore core)
           
UpdateHandler(SolrCore core)
           
 

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

Constructors in org.apache.solr.update.processor with parameters of type SolrCore
UpdateRequestProcessorChain(SolrCore solrCore)
           
UpdateRequestProcessorChain(UpdateRequestProcessorFactory[] chain, SolrCore solrCore)
           
 

Uses of SolrCore in org.apache.solr.util
 

Methods in org.apache.solr.util that return SolrCore
 SolrCore TestHarness.getCore()
           
 

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 © 2010 Apache Software Foundation. All Rights Reserved.