Skip to content

Instantly share code, notes, and snippets.

@doom369
Last active September 1, 2020 07:15
Show Gist options
  • Save doom369/c9b9ecc2c7a0dff38c1631af32b44665 to your computer and use it in GitHub Desktop.
Save doom369/c9b9ecc2c7a0dff38c1631af32b44665 to your computer and use it in GitHub Desktop.
@BenchmarkMode(Mode.AverageTime)
@Fork(1)
@State(Scope.Thread)
@Warmup(iterations = 5, time = 1)
@OutputTimeUnit(TimeUnit.NANOSECONDS)
@Measurement(iterations = 10, time = 1)
public class ReplaceCustom {
@Param({"", "somePathNoDoT", "some.Path.With.Dot"})
String value;
@Benchmark
public String replace() {
return value.replace(".", "/");
}
@Benchmark
public String replaceSpring() {
return springReplace(value, ".", "/");
}
@Benchmark
public String replaceApache() {
return StringUtils.replace(value, ".", "/");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment