1 Sep 2003 12:59
Re: conf.xml
Wolfgang Meier <meier <at> ifs.tu-darmstadt.de>
2003-09-01 10:59:49 GMT
2003-09-01 10:59:49 GMT
> Is a schema/DTD for the config file available? I'd like to know what > settings are optional. To kick things off: > > * What happens after the max number of connections as specified in > <pool/> is reached? No more connections? Does this also apply to > embedded deployments? What happens if I omit the <pool/> declaration? I attached my schema file for conf.xml, but I wrote it some time ago, so it might not be up to date. The <pool> directive specifies the number of storage backend instances available to process requests. Backend instances are shared between all threads accessing the database. A backend instance is retrieved for each single action and released afterwards. It is thus ok to have less backend instances than client threads. You need at least two backend instances during the initialization phase of the database. > * What happens if I omit <at> index-deth from <indexer/>? What happens if I > omit the <indexer/>? The <at> index-depth setting is described in the docs. There are default settings for all configuration entries, so if you remove <indexer/>, default settings will be applied. > * What happens if I omit the <log4j:configuration/> It doesn't matter where you define the log4j configuration. Basically, the last configuration wins. So if you have an external log4j configuration (e.g. via JBoss), you can just delete the <log4j:configuration/> section from conf.xml and define the settings for eXist somewhere else. Wolfgang(Continue reading)
RSS Feed