-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
allow jmh benchmarks to be cached for faster ci runs
- Loading branch information
Showing
11 changed files
with
99 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,7 @@ | |
* This benchmark can be run by optionally specifying the target jvm in the command. | ||
* <p> | ||
* <pre>{@code | ||
* JAVA_VERSION=20 ./gradlew jmh -PincludePattern=FactoryBenchmark --no-daemon | ||
* ./gradlew jmh -PincludePattern=FactoryBenchmark -q --rerun | ||
* }</pre> | ||
* | ||
* @author [email protected] (Ben Manes) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,7 @@ | |
/** | ||
* <p> | ||
* <pre>{@code | ||
* ./gradlew jmh -PincludePattern=BuilderBenchmark --no-daemon | ||
* ./gradlew jmh -PincludePattern=BuilderBenchmark -q --rerun | ||
* }</pre> | ||
* | ||
* @author [email protected] (Ben Manes) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ | |
* a 100% eviction rate to mimic worst case behavior. | ||
* <p> | ||
* <pre>{@code | ||
* ./gradlew jmh -PincludePattern=EvictionBenchmark | ||
* ./gradlew jmh -PincludePattern=EvictionBenchmark -q --rerun | ||
* }</pre> | ||
* | ||
* @author [email protected] (Ben Manes) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ | |
|
||
/** | ||
* <pre>{@code | ||
* ./gradlew jmh -PincludePattern=FrequencySketchBenchmark | ||
* ./gradlew jmh -PincludePattern=FrequencySketchBenchmark -q --rerun | ||
* }</pre> | ||
* | ||
* @author [email protected] (Ben Manes) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,8 @@ | |
* a 100% hit rate and a Zipf distribution of keys is used to mimic application usage patterns. | ||
* <p> | ||
* <pre>{@code | ||
* ./gradlew jmh -PincludePattern=GetPutBenchmark | ||
* // JAVA_VERSION=?? for an alternative jdk | ||
* ./gradlew jmh -PincludePattern=GetPutBenchmark -q --rerun | ||
* }</pre> | ||
* | ||
* @author [email protected] (Ben Manes) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,7 +41,7 @@ | |
* concerns and should not be used to compare implementations. | ||
* <p> | ||
* <pre>{@code | ||
* ./gradlew jmh -PincludePattern=PutRemoveBenchmark | ||
* ./gradlew jmh -PincludePattern=PutRemoveBenchmark -q --rerun | ||
* }</pre> | ||
* | ||
* @author [email protected] (Ben Manes) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ | |
|
||
/** | ||
* <pre>{@code | ||
* ./gradlew jmh -PincludePattern=TimerWheelBenchmark | ||
* ./gradlew jmh -PincludePattern=TimerWheelBenchmark -q --rerun | ||
* }</pre> | ||
* | ||
* @author [email protected] (Ben Manes) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters