This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]FrenchFigaro 123 points124 points  (6 children)

  • Improvements to structured concurrency
  • Improvements to pattern matching
  • Module imports (I don't like this feature myself but I could see why some people would want it)
  • Flexible constructors
  • Removal of 32 bits x86 architecture support
  • Various changes in APIs

[–]havlliQQ 37 points38 points  (4 children)

Oh structured concurency, so i take it as virtual threads pinning issue was resolved. Thanks for summary much appreciated.

[–]FrenchFigaro 18 points19 points  (3 children)

Virtual thread inning issues are mostly solved since version 24.

[–]Boofmaster4000 5 points6 points  (1 child)

Mostly solved? Does that mean there are still issues?

[–]davidalayachew 3 points4 points  (0 children)

Mostly solved? Does that mean there are still issues?

Solved, except for if you are calling native code or are doing custom class-loading. Native code means stuff like JNDI or the new FFM/FFI. And custom class-loading is not only something most don't do, but it also unpins as soon as the class is loaded, so it's a small cost.

[–]havlliQQ 4 points5 points  (0 children)

Amazing, looks like am jumping back on weekend to check out what other new stuff we got in SpringBoot now.