When calling .map()
on a map of a large length, which will be faster
- Calling it on a mutable map
- Calling it on a immutable map
- Or it will not make a difference
When calling .map()
on a map of a large length, which will be faster
Copyright © 2021 Jogjafile Inc.
Let's just check it (of course, microbenchmark results should always be taken with a grain of salt).
Using Scalameter:
Running (
sbt run
):Apparently, mutable map is almost exactly two times faster. My guess is that this happens because of a difference in map
Builder
s: immutable map builder is avar
which is updated with each added element, while mutable map builder is the mutable map itself. Consequently, with large map sizes, immutable map builder causes more allocations. This is really a wild guess, so maybe someone more knowledgeable would give the correct reason.