добавилась новая аннотация
https://dotty.epfl.ch/docs/reference/other-new-features/threadUnsafe-annotation.html
A new annotation @threadUnsafe can be used on a field which defines a lazy val. When this annotation is used, the initialization of the lazy val will use a faster mechanism which is not thread-safe.
Исходя из написаного я так понимаю что механизм по умолчанию должен быть thread-safe и если он не нужен, то нужно явно поменить аннотацией, и в тоже время, другая страница с изменением компилятора и самого LazyVal хелпера говорится следующее
https://docs.scala-lang.org/sips/improved-lazy-val-initialization.html#elegant-local-lazy-vals
To address the fact that we now have both thread safe and single-threaded lazy vals, we propose to bring lazy vals in sync with normal vals with regards to usage of @volatile annotation.
In order to simplify migration, Scalafix the migration tool that will be used to migrate between versions of Scala, including Dotty, supports a VolatileLazyVal rewrite that adds @volatile to all lazy vals present in the codebase.
Не могу понять, так по умолчанию thread-safe or non-thread-safe? Одно противоречит другому (или скорее всего что-то я не дочитал, или неправильно перевел)
В одной статье про скалу 2, в другой про 3
Если кому интересно офф ответ iirc, early Dotty versions had thread-unsafe lazy vals. but at some point the design changed and it was decided to make thread-safety the default again, as in Scala 2. so yeah, a fix is needed here.
Обсуждают сегодня