clarify caveat about using native locks and point to wiki

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@903523 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Chris M. Hostetter 2010-01-27 01:54:04 +00:00
parent 6b96f85072
commit b574589726
1 changed files with 5 additions and 1 deletions

View File

@ -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>
<!--