Hacker News new | ask | show | jobs
by agentgt 3264 days ago
> while my Java apps take 2 minutes to start up

This is the classic case (and I'm/we are guilty of it as well) of Java apps that are probably traditional monolithic apps that use frameworks with extensive reflection and class loading (ie spring component scanning).

You can get ridiculously fast loading time with Java if you use Dart2, a reasonable web framework and no ORMs. I'm talking 500ms... sort of depends on your JVM settings. Sure not 10ms but still way faster than 2 minutes.

1 comments

500ms is not "ridiculously fast".
For service startup time? Sure it is.

How often are you booting your webservers that 500ms isn't fast enough?

in the JVM starting world it is..