|
|
|
|
|
by hyperpape
546 days ago
|
|
For anyone interested in this subject, I’d recommend reading about JMH. The JVM isn’t 100% the same as JS VMs, but as a benchmarking environment it shares the same constraint of JIT compilation. The right design is probably one that: 1) runs different tests in different forked processes, to avoid variance based on the order in which tests are run changing the JIT’s decisions. 2) runs tests for a long time (seconds or more per test) to ensure full JIT compilation and statistically meaningful results Then you need to realize that your micro benchmarks give you information and help you understand, but the acid test is improving the performance of actual code. |
|