Before 2.8, the scala compiler compiled generic classes using type erasure, just like Java. However, there is a significant performance drop for primitive types: in order to satisfy the JVM requirements, primitive values need to be boxed when they enter generic code.
Boxing means wrapping a primitive value in a heap-allocated object. Whenever code operates on such values, it needs first to extract the value from the object, operate on it, then box it back.
Specialization ensures that boxing does not happen, by generating specialized versions of generic code.
Performance improvements may reach an order of magnitude.
In this talk Iulian will look at several specialized classes in the standard library, he will explain how specialization works, the benefits and some potential traps.
YOU MAY ALSO LIKE:
- Lightning Talk - 5 Things You Need to Know About Scala Compilation: #3 Will Blow Your Mind! (SkillsCast recorded in December 2017)
- Scala Days 2023 (Online Conference on 1st - 30th December 2023)
- Saving Costs with Pragmatic Serverless Java Architectures (SkillsCast recorded in November 2022)
- Taming the Context Beast (SkillsCast recorded in October 2022)
Scala - Performance improvements of a factor of 4 to 30, Boxing and Specialization
Iulian Dragos
Iulian Dragoș dreams about a world where the Scala programming language is the default choice for new projects. He learned Scala by writing the compiler backend for it during his PhD at EPFL, back in 2004, and he was the first employee of Lightbend (formerly Typesafe). At Lightbend he helped the company grow from 5 to 85 employees, playing the role of engineer, technical lead, consultant, trainer or sales engineer. Iulian is a frequent speaker at conferences and actively contributing to several open-source projects.