org.apache.solr.core
Class SolrConfig

java.lang.Object
  extended by org.apache.solr.core.Config
      extended by org.apache.solr.core.SolrConfig

public class SolrConfig
extends Config

Provides a static reference to a Config object modeling the main configuration data for a a Solr instance -- typically found in "solrconfig.xml".

Version:
$Id: SolrConfig.java 684908 2008-08-11 20:37:36Z gsingers $

Nested Class Summary
static class SolrConfig.HttpCachingConfig
           
static class SolrConfig.JmxConfiguration
           
 
Field Summary
 int booleanQueryMaxClauseCount
           
static SolrConfig config
          Deprecated. Use SolrCore.getSolrConfig() instead.
static String DEFAULT_CONF_FILE
           
 SolrIndexConfig defaultIndexConfig
           
 CacheConfig documentCacheConfig
           
 boolean enableLazyFieldLoading
           
 CacheConfig filterCacheConfig
           
 int filtOptCacheSize
           
 boolean filtOptEnabled
           
 float filtOptThreshold
           
 int hashDocSetMaxSize
           
 float hashSetInverseLoadFactor
           
 SolrConfig.JmxConfiguration jmxConfig
           
 SolrIndexConfig mainIndexConfig
           
 CacheConfig queryResultCacheConfig
           
 int queryResultMaxDocsCached
           
 int queryResultWindowSize
           
static Collection<Throwable> severeErrors
          Singleton keeping track of configuration errors
 boolean useFilterForSortedQuery
           
 CacheConfig[] userCacheConfigs
           
 
Fields inherited from class org.apache.solr.core.Config
log
 
Constructor Summary
SolrConfig()
          Creates a default instance from the solrconfig.xml.
SolrConfig(String name)
          Creates a configuration instance from a configuration name.
SolrConfig(String name, InputStream is)
          Creates a configuration instance from a configuration name and stream.
SolrConfig(String instanceDir, String name, InputStream is)
          Creates a configuration instance from an instance directory, configuration name and stream.
 
Method Summary
 SolrConfig.HttpCachingConfig getHttpCachingConfig()
           
 SolrQueryRequest getPingQueryRequest(SolrCore core)
          Deprecated. use PingRequestHandler instead
 
Methods inherited from class org.apache.solr.core.Config
evaluate, findClass, get, get, getBool, getBool, getConfigDir, getDocument, getDouble, getDouble, getFloat, getFloat, getInstanceDir, getInt, getInt, getLines, getName, getNode, getResourceLoader, getResourceName, getVal, getXPath, newInstance, openResource
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

DEFAULT_CONF_FILE

public static final String DEFAULT_CONF_FILE
See Also:
Constant Field Values

config

@Deprecated
public static SolrConfig config
Deprecated. Use SolrCore.getSolrConfig() instead.
Compatibility feature for single-core (pre-solr{215,350} patch); should go away at solr-2.0


severeErrors

public static final Collection<Throwable> severeErrors
Singleton keeping track of configuration errors


booleanQueryMaxClauseCount

public final int booleanQueryMaxClauseCount

filtOptEnabled

public final boolean filtOptEnabled

filtOptCacheSize

public final int filtOptCacheSize

filtOptThreshold

public final float filtOptThreshold

filterCacheConfig

public final CacheConfig filterCacheConfig

queryResultCacheConfig

public final CacheConfig queryResultCacheConfig

documentCacheConfig

public final CacheConfig documentCacheConfig

userCacheConfigs

public final CacheConfig[] userCacheConfigs

useFilterForSortedQuery

public final boolean useFilterForSortedQuery

queryResultWindowSize

public final int queryResultWindowSize

queryResultMaxDocsCached

public final int queryResultMaxDocsCached

enableLazyFieldLoading

public final boolean enableLazyFieldLoading

hashSetInverseLoadFactor

public final float hashSetInverseLoadFactor

hashDocSetMaxSize

public final int hashDocSetMaxSize

defaultIndexConfig

public final SolrIndexConfig defaultIndexConfig

mainIndexConfig

public final SolrIndexConfig mainIndexConfig

jmxConfig

public final SolrConfig.JmxConfiguration jmxConfig
Constructor Detail

SolrConfig

public SolrConfig()
           throws ParserConfigurationException,
                  IOException,
                  SAXException
Creates a default instance from the solrconfig.xml.

Throws:
ParserConfigurationException
IOException
SAXException

SolrConfig

public SolrConfig(String name)
           throws ParserConfigurationException,
                  IOException,
                  SAXException
Creates a configuration instance from a configuration name. A default resource loader will be created (@see SolrResourceLoader)

Parameters:
name - the configuration name used by the loader
Throws:
ParserConfigurationException
IOException
SAXException

SolrConfig

public SolrConfig(String name,
                  InputStream is)
           throws ParserConfigurationException,
                  IOException,
                  SAXException
Creates a configuration instance from a configuration name and stream. A default resource loader will be created (@see SolrResourceLoader). If the stream is null, the resource loader will open the configuration stream. If the stream is not null, no attempt to load the resource will occur (the name is not used).

Parameters:
name - the configuration name
is - the configuration stream
Throws:
ParserConfigurationException
IOException
SAXException

SolrConfig

public SolrConfig(String instanceDir,
                  String name,
                  InputStream is)
           throws ParserConfigurationException,
                  IOException,
                  SAXException
Creates a configuration instance from an instance directory, configuration name and stream.

Parameters:
instanceDir - the directory used to create the resource loader
name - the configuration name used by the loader if the stream is null
is - the configuration stream
Throws:
ParserConfigurationException
IOException
SAXException
Method Detail

getHttpCachingConfig

public SolrConfig.HttpCachingConfig getHttpCachingConfig()

getPingQueryRequest

@Deprecated
public SolrQueryRequest getPingQueryRequest(SolrCore core)
Deprecated. use PingRequestHandler instead

Returns a Request object based on the admin/pingQuery section of the Solr config file.



Copyright © 2008 Apache Software Foundation. All Rights Reserved.