DEV Community

Christopher Kocel
Christopher Kocel

Posted on

 

Wednesday Links - Edition 2020-10-07

Spring Boot 2.4 and the new actuator endpoint "startup" ( 2 min ) ๐Ÿ
https://twitter.com/maciejwalkowiak/status/1312169318155653121

How the HotSpot and Graal JVMs execute Java Code ( 50 min ) โ™จ๏ธ
https://www.infoq.com/presentations/hotspot-graalvm-code-execution

Kotlin Roadmap ( 3 min read ) ๐Ÿ›ฃ๏ธ
https://kotlinlang.org/roadmap.html

JEP 390: Warnings for Value-Based Classes ( 4 min read ) ๐Ÿ‘ฎ
https://openjdk.java.net/jeps/390

Data Auditing With Spring Data R2DBC ( 4 min read ) ๐Ÿ”
https://medium.com/swlh/data-auditing-with-spring-data-r2dbc-5d428fc94688

Redis Client Lettuce 6.0.0.RELEASE released ( 1 min read ) ๐Ÿฅฌ
https://groups.google.com/g/lettuce-redis-client-users/c/E2F2QPi62BU

Don't Compare Averages ( 15 min read ) ๐Ÿ“Š
https://martinfowler.com/articles/dont-compare-averages.html

Please Test Your Memory ( 3 min read ) ๐Ÿง 
https://shipilev.net/jvm/test-your-memory

Top comments (0)

An Animated Guide to Node.js Event Loop

Node.js doesnโ€™t stop from running other operations because of Libuv, a C++ library responsible for the event loop and asynchronously handling tasks such as network requests, DNS resolution, file system operations, data encryption, etc.

What happens under the hood when Node.js works on tasks such as database queries? We will explore it by following this piece of code step by step.