Skip to content

Commit

Permalink
Lucene engine: use throughput collector (ParallelGC) to minimize cont…
Browse files Browse the repository at this point in the history
…inuous GC interference; because the benchy takes the fastest of 10 runs (after warmup runs) any GC stop-the-world impact should not impact final results
  • Loading branch information
mikemccand committed Jun 10, 2023
1 parent c847a2d commit 4402d42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/lucene-9.5.0/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ clean-index:
compile: build

serve:
@java -Xmx$(HEAP) -Xms$(HEAP) -cp build/libs/search-index-benchmark-game-lucene-1.0-SNAPSHOT-all.jar DoQuery idx
@java -Xmx$(HEAP) -Xms$(HEAP) -XX:+UseParallelGC -cp build/libs/search-index-benchmark-game-lucene-1.0-SNAPSHOT-all.jar DoQuery idx

index: idx

Expand Down

0 comments on commit 4402d42

Please sign in to comment.