Explore >> Select a destination


You are here

blog.scaledcode.com
| | www.morling.dev
6.2 parsecs away

Travel
| | Update Jun 3: This post is discussed on Reddit and Hacker News Project Loom (JEP 425) is probably amongst the most awaited feature additions to Java ever; its implementation of virtual threads (or "green threads") promises developers the ability to create highly concurrent applications, for instance with hundreds of thousands of open HTTP connections, sticking to the well-known thread-per-request programming model, without having to resort to less familiar and often more complex to use reactive approaches. Having been in the workings for several years, Loom got merged into the mainline of OpenJDK just recently and is available as a preview feature in the latest Java 19 early access builds. I.e. it's the perfect time to get your hands onto virtual threads and...
| | www.stackchief.com
1.4 parsecs away

Travel
| | Java multithreading examples including two ways of multithreading, good examples, avoiding deadlock, and how many threads can run.
| | initialcommit.com
5.0 parsecs away

Travel
| | Since String is immutable, it is very costly to use it when constructing a dynamic character string due to the fact that a new memory location will be allocated at each assignment or modification.
| | v8.dev
13.7 parsecs away

Travel
| JavaScript regular expressions are getting some new functionality: lookbehind assertions.