Scala is said to have good performance because it runs on Java Virtual Machine (JVM).
But, like any other languages, I suspect many of you have had performance issues during actual development.
There are many issues to keep in mind to develop a high performance Scala application; to name a few:
Avoid full garbage collection (GC)
Blocking calls for database access
Scala specific way of writing code, etc
In this session, we will start with profiling methods to measure performance, then go over ways to write Scala to remove bottlenecks, non-blocking processing, and parallel processing.
Session length
40 minutes
Language of the presentation
Japanese
Target audience
Intermediate: Requires a basic knowledge of the area
Who is your session intended to
Those who are interested in getting performance out of Scala