Performance Tuning in Kotlin Made Easy

Written by jshvarts | Published 2017/06/27
Tech Story Tags: software-development | kotlin | performance-testing | java | programming

TLDRvia the TL;DR App

I often see developers on http://slack.kotlinlang.org/ wondering which of their code snippets is more performant. Usually, one of the snippets is similar to how things are done in Java while the other is a more Kotlin idiomatic way. Generally, the assumption tends to be that, by adding syntactic sugar, “the Kotlin way” is slower than the more verbose “Java way”. It is not always true.

Having a Java development background, whenever I am tasked with benchmarking performance of a code block/method, I automatically think of doing this:

<a href="https://medium.com/media/aa8535696fc9e686269aae10563cf8b2/href">https://medium.com/media/aa8535696fc9e686269aae10563cf8b2/href</a>

How many times have you had to write something similar in Java thinking that there must be a better way?

The better way is finally here and, again, it comes from Kotlin.

<a href="https://medium.com/media/f8a4ed4846bb5ea9a461e19f5aec46a0/href">https://medium.com/media/f8a4ed4846bb5ea9a461e19f5aec46a0/href</a>

More intuitive and concise code, no math (albeit basic) all mean less chance of making an error when writing code.

Note, measureTimeMillis (as well as measureNanoTime) is a standard library function. In Kotlin, when a function takes a lambda as the last argument, the latter may be supplied after the function call like so:

measureTimeMillis() {}

And because there are no additional arguments passed into the function, the parentheses may be omitted altogether:

measureTimeMillis {}

Let’s see an example usage. We will compare performance between the basic for loop and the forEach function from Kotlin’s standard library when dealing with integers:

<a href="https://medium.com/media/71e2b79d564b3423b61acff9a6b66050/href">https://medium.com/media/71e2b79d564b3423b61acff9a6b66050/href</a><a href="https://medium.com/media/25878a49c8832954c03d9630db6677f3/href">https://medium.com/media/25878a49c8832954c03d9630db6677f3/href</a>

When I ran both, I got 3 milliseconds and 15 milliseconds printed for forLoopMillisElapsed and forEachMillisEllapsed respectively. So I set out to figure out what could possibly be the reason for the difference in performance.

IntelliJ IDEA lets you easily decompile Kotlin code into Java using Tools > Kotlin > Show Kotlin Bytecode > Decompile. Let’s decompile the two code blocks above and study the results:

The snippet with the for loop decompiled contains:

<a href="https://medium.com/media/3cb3e3890536f4689262807322d4fe15/href">https://medium.com/media/3cb3e3890536f4689262807322d4fe15/href</a>

The snippet with the forEach loop decompiled contains:

<a href="https://medium.com/media/81d3b1e4dd1c466d78b5414c513b03ca/href">https://medium.com/media/81d3b1e4dd1c466d78b5414c513b03ca/href</a>

Therefore, it’s logical to conclude that the forEach function in this particular case is slower than the regular for loop due to the overhead of the allocating an Iterator and Iterable objects when iterating over the array.

Because it is so easy to get basic code performance measurements with Kotlin, I anticipate using measureTimeMillis in my code quite a bit going forward. That, along with studying the decompiled Kotlin byte code, is a great way to gain an insight into how Kotlin interacts with the JVM. Will the resulting code always be optimal? Not necessarily — there are always tradeoffs between code performance, clarity and conciseness. But that is a topic for another article.


Published by HackerNoon on 2017/06/27