-
Method parameters in io.nosqlbench.nb.api.testutils with type arguments of type Result
| Modifier and Type |
Method |
Description |
double[] |
Perf.getDeltas(java.util.function.Function<Result,java.lang.Double> resultProperty) |
Get the differences between successive test runs for a given
property.
|
double |
Perf.getMaximumDelta(java.util.function.Function<Result,java.lang.Double> resultProperty,
int count) |
For the most recent test runs, measure the maximum difference in
a given property.
|
boolean |
Perf.isConverged(java.util.function.Function<Result,java.lang.Double> resultProperty,
double withinMargin,
int count) |
Extract the double field value from the last results and return whether or not
they are within some fractional margin between the minimum and maximum seen value.
|
Perf |
Perf.sort(java.util.function.Function<Result,java.lang.Double> resultProperty) |
Sort the internal results according to some property
|
static java.util.List<java.lang.String> |
Result.toString(java.util.List<Result> results) |
|
java.lang.String |
Perf.toStringDelta(java.util.function.Function<Result,java.lang.Double> resultProperty,
java.lang.String deltaDescription,
int... lastN) |
Summarize the last results in a tabular format, with row-by-row delta included
for a given property.
|