We added search concurrency to lucene bench, let's add it as well; to the geo benchmarks. I added a new otional parameter called searchConcurrency that accepts an integer greater or equal to zero. This is how it works:
if not added, the searches will be run with the number of threads defined by Runtime.getRuntime().availableProcessors();
if zero, it runs with no search concurrency (like now)
if a positive integer, this will the number of threads in the threadpool.
We added search concurrency to lucene bench, let's add it as well; to the geo benchmarks. I added a new otional parameter called searchConcurrency that accepts an integer greater or equal to zero. This is how it works:
Runtime.getRuntime().availableProcessors();