Author: yonik
Date: Fri Mar 19 21:23:57 2010
New Revision: 925431
URL: http://svn.apache.org/viewvc?rev=925431&view=rev
Log:
add directoryFactory to example, w/ default to FS
Modified:
lucene/solr/branches/newtrunk/solr/example/solr/conf/solrconfig.xml
Modified: lucene/solr/branches/newtrunk/solr/example/solr/conf/solrconfig.xml
URL:
http://svn.apache.org/viewvc/lucene/solr/branches/newtrunk/solr/example/solr/conf/solrconfig.xml?rev=925431&r1=925430&r2=925431&view=diff
==============================================================================
--- lucene/solr/branches/newtrunk/solr/example/solr/conf/solrconfig.xml
(original)
+++ lucene/solr/branches/newtrunk/solr/example/solr/conf/solrconfig.xml Fri Mar
19 21:23:57 2010
@@ -79,6 +79,12 @@
<dataDir>${solr.data.dir:}</dataDir>
+ <!-- The DirectoryFactory to use for indexes.
+ solr.StandardDirectoryFactory, the default, is filesystem based.
+ solr.RAMDirectoryFactory is memory based and not persistent. -->
+ <directoryFactory name="DirectoryFactory"
class="${solr.directoryFactory:solr.StandardDirectoryFactory}"/>
+
+
<!-- WARNING: this <indexDefaults> section only provides defaults for index
writers
in general. See also the <mainIndex> section after that when changing
parameters
for Solr's main Lucene index. -->