JVM Internals
Understanding the JVM: More Than Just a Runtime
When I first started coding Java, I treated the JVM like a magic box. Write code, hit run, and somehow it works on Windows, Mac, and Linux. But once I star…
Stories Worth Reading
PixelProse is your go-to blog for insightful articles on Technology, Travel, Food, Health, Lifestyle, Business, Fashion and Sports. Fresh perspectives. Real stories. Zero fluff.
Results for "JVM"
6 articles found
JVM Internals
When I first started coding Java, I treated the JVM like a magic box. Write code, hit run, and somehow it works on Windows, Mac, and Linux. But once I star…
DevOps
The days of deploying a WAR file to a Tomcat instance on a virtual machine are fading. Most Java shops are moving to containers. I started Dockerizing my S…
Advanced Java
The biggest criticism of Java in the serverless world has been startup time. A cold start of a Spring Boot app can take 20-30 seconds. GraalVM changes that…
Performance
My worst production moment was at 3 AM on a Saturday. The application started throwing `OutOfMemoryError`. The heap was full, and the GC was thrashing. I h…
Modern Java
I’ve been waiting for virtual threads (Project Loom) for years. Traditionally, Java’s concurrency model was based on operating system threads, which ar…
JVM Languages
When Kotlin first came out, I thought it was just a fad. But after Google made it first-class for Android, and I saw my colleagues writing less boilerplate…