Author: hossman
Date: Wed Jan 27 01:54:04 2010
New Revision: 903523
URL: http://svn.apache.org/viewvc?rev=903523&view=rev
Log:
clarify caveat about using native locks and point to wiki
Modified:
lucene/solr/trunk/example/solr/conf/solrconfig.xml
Modified: lucene/solr/trunk/example/solr/conf/solrconfig.xml
URL:
http://svn.apache.org/viewvc/lucene/solr/trunk/example/solr/conf/solrconfig.xml?rev=903523&r1=903522&r2=903523&view=diff
==============================================================================
--- lucene/solr/trunk/example/solr/conf/solrconfig.xml (original)
+++ lucene/solr/trunk/example/solr/conf/solrconfig.xml Wed Jan 27 01:54:04 2010
@@ -131,11 +131,15 @@
or when there is no possibility of another process trying
to modify the index.
native = NativeFSLockFactory - uses OS native file locking.
- Do not use with multiple solr webapps in the same JVM.
+ Do not use with multiple solr webapps in the same JVM are
+ attempting to share a single index.
simple = SimpleFSLockFactory - uses a plain file for locking
(For backwards compatibility with Solr 1.2, 'simple' is the default
if not specified.)
+
+ More details on the nuances of each LockFactory...
+ http://wiki.apache.org/lucene-java/AvailableLockFactories
-->
<lockType>native</lockType>
<!--