You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@lucene.apache.org by Apache Wiki <wi...@apache.org> on 2007/10/25 15:01:37 UTC

[Lucene-java Wiki] Trivial Update of "LuceneFAQ" by GrantIngersoll

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Lucene-java Wiki" for change notification.

The following page has been changed by GrantIngersoll:
http://wiki.apache.org/lucene-java/LuceneFAQ

------------------------------------------------------------------------------
  
  Even though index searching is a read only operation, the !IndexSearcher must momentarily lock the index when it is opened in order to get the list of files in the index.  If locking is not configured properly it gets an incorrect list (because the list of files changes as the !IndexWriter adds docs or optimizes the index).  Remote filesystems (like NFS and Samba) rarely work, because they cannot make the transactional guarantees neccessary to ensure that all clients get consistent views of the directory.
  
- ==== Will TopDocCollector#collect(int doc, float score) operate on documents? ====
+ ==== Will TopDocCollector#collect(int doc, float score) operate on all documents? ====
- Does '''TopDocCollector''' continue to collecte documents even when hq is full?
+ Does '''TopDocCollector''' continue to collect documents even when hq is full?
  IF NOT, does it mean that the collect operation DO NOT cover all the documents?
  Pls refer to lucene-2.2.0-src
  {{{