gf2121 commented on a change in pull request #530: URL: https://github.com/apache/lucene/pull/530#discussion_r767459420
########## File path: lucene/core/src/java/org/apache/lucene/util/bkd/Run.java ########## @@ -0,0 +1,167 @@ +package org.apache.lucene.util.bkd; + +import java.io.IOException; +import java.nio.file.Paths; +import java.util.HashSet; +import java.util.Random; +import java.util.Set; +import org.apache.lucene.document.Document; +import org.apache.lucene.document.LongPoint; +import org.apache.lucene.index.DirectoryReader; +import org.apache.lucene.index.IndexReader; +import org.apache.lucene.index.IndexWriter; +import org.apache.lucene.index.IndexWriterConfig; +import org.apache.lucene.index.LeafReaderContext; +import org.apache.lucene.search.CollectionTerminatedException; +import org.apache.lucene.search.Collector; +import org.apache.lucene.search.IndexSearcher; +import org.apache.lucene.search.LeafCollector; +import org.apache.lucene.search.Query; +import org.apache.lucene.search.QueryCachingPolicy; +import org.apache.lucene.search.Scorable; +import org.apache.lucene.search.ScoreMode; +import org.apache.lucene.store.Directory; +import org.apache.lucene.store.FSDirectory; + +/** java doc */ +public class Run { Review comment: This is the benchmark script, i post it here in case someone would like to play with it. I'll delete this file later. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org