Piotr Mińkowski Profile picture
Java Developer · Software Architect · Blogger · Learner · YouTube https://t.co/JACoUP8Y6u · Author: Mastering Spring Cloud
Feb 10, 2023 7 tweets 3 min read
💡No matter which Open JDK vendor you choose? ☕️🤔

Let's compare Oracle vs Eclipse Temurin. For my app (Spring Boot 3 + Mongo) diff is pretty significant:

Oracle: startup 12-13s, memory ~270M, 520req/s
Temurin: startup 8-9s, memory ~220M, 620req/s

See how I'm testing it 👇 I have a simple Spring Boot 3 🍃 app that connects to Mongo. Both app and db are running on Kubernetes. In my test I'm simulating 10 virtual users that continously send requests to the app (app inserts data to Mongo). Here's my app repo 👇
github.com/piomin/sample-…