I'm making a several performance tests of different languages. When I started test Java applications I got a problem: JIT Compiler. I noted that after several executions of a method, this method increase your performance significantly, so I discovered that it use JIT Compiler. To make my tests I've two options.
- Activate manually JIT, or
- Check if it is activated.
I must do it to get the real results about methods executions.