pekko/bench-jmh
scala-steward-asf[bot] dad6b9f6e3
Update scala-library to 2.13.15 (#1505)
* Update scala-library to 2.13.15

* Update link-validator.conf

* fix `-Wconf` to match new semantics

Override order reversed, see also https://github.com/scala/scala/releases

---------

Co-authored-by: Arnout Engelen <arnout@bzzt.net>
Co-authored-by: PJ Fanning <pjfanning@users.noreply.github.com>
2025-01-03 20:21:05 +01:00
..
src/main Update scala-library to 2.13.15 (#1505) 2025-01-03 20:21:05 +01:00
README.md add asInputStream to ByteString (#1085) 2024-02-05 16:09:56 +01:00

Apache Pekko Microbenchmarks

This subproject contains some microbenchmarks excercising key parts of Apache Pekko. (Excluding typed which has its own jmh module)

Pekko uses sbt-jmh to integrate Java Microbenchmark Harness. You can run them like:

sbt shell
pekko > project bench-jmh
sbt:pekko-bench-jmh> Jmh/run -i 3 -wi 3 -f 1 .*ActorCreationBenchmark

or execute in one-line command

sbt bench-jmh/Jmh/run -i 3 -wi 3 -f 1 .*ActorCreationBenchmark

Use 'Jmh/run -h' to get an overview of the available options.

Some potentially out of date resources for writing JMH benchmarks: