Re: Lucene search benchmark/stress test tool

2006-05-01 Thread Otis Gospodnetic
, and then when all searches were done, I calculated min/max/median/percentile/etc. Otis - Original Message From: Marvin Humphrey <[EMAIL PROTECTED]> To: java-user@lucene.apache.org Sent: Sunday, April 30, 2006 8:28:20 PM Subject: Re: Lucene search benchmark/stress test tool On Apr 2

Re: Lucene search benchmark/stress test tool

2006-04-30 Thread Marvin Humphrey
On Apr 26, 2006, at 9:34 AM, Otis Gospodnetic wrote: I'm about to write a little command-line Lucene search benchmark tool. I'm interested in benchmarking search performance and the ability to specify concurrency level (# of parallel search threads) and response timing, so I can calculate

Re: Lucene search benchmark/stress test tool

2006-04-27 Thread Doug Cutting
Sunil Kumar PK wrote: I want to know is there any possibility or method to merge the weight calculation of index 1 and its search in a single RPC instead of doing the both function in separate steps. To score correctly, weights from all indexes must be created before any can be searched. This

Re: Lucene search benchmark/stress test tool

2006-04-26 Thread Sunil Kumar PK
Hi, I have added some code in the Lucene 1.9 - source code for Lucene RemoteParallelMultisearcher performance benchmark. I have recorded the time to execute the 'searchables[i].docFreq(term)' (in MultiSearcher.java) method in both client and server, and for ' searchable.search' (in ParallelMul

Lucene search benchmark/stress test tool

2006-04-26 Thread Otis Gospodnetic
Hi, I'm about to write a little command-line Lucene search benchmark tool. I'm interested in benchmarking search performance and the ability to specify concurrency level (# of parallel search threads) and response timing, so I can calculate min, max, average, and mean times. Something like 'a