Java famously has no unsigned integer types [1] . This is sometimes treated as a problem that needs a solution. Assuming that it is a p... (more…)
Read more »
Find out how OpenFaaS is accelerating serverless functions running on the JVM with the AfterBurn concept with benchmarks and load testing on bare-metal... (more…)
Read more »
Nailgun is a client, protocol, and server for running Java programs from the command line without incurring the JVM startup overhead. - GitHub - facebook/nailgun: Nailgun is a client, protocol, and... (more…)
Read more »
Suppose you've got a critical section of code, meaning only one process should execute it at a time. In the Java world, one solution is to slap synchronized on the method and call it a day. In Kotlin, we use @Synchronized to get the same effect: repeat(... (more…)
Read more »