On Sonntag, 29. Juni 2008, qaz zaq wrote: > I have 2 FSDirectory indexes each with size about 500M. I have 2 > parallel search threads fetching 200 documents from these 2 > indexes which usually take less then 16ms.
Fetching documents means that per document about 2 disk seeks are needed to access the document. For 200 documents, that's not possible in 16ms on a common hard disk, unless everything is chached by the operating system. Your copy operation seems to clear that cache and search times get slower. A solution might be to re-warm the cache after each copy process. Regards Daniel -- http://www.danielnaber.de --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]