Remix.run Logo
poemxo 4 days ago

Starting up a Java program takes much longer than it should and that affects perception.

edem 3 days ago | parent | next [-]

Depends on the program (especially the framework used) and the GC being used. I can write a java program and set it up in a way that it runs faster than almost everything else. For example in a serverless architecture where you need fast startup and small programs you can choose __not__ to use a GC and run ephemeral Java scripts. It starts and finishes running faster than you can blink.

nova22033 3 days ago | parent | prev | next [-]

It may affect developer perception but I'm pretty sure my users don't notice and don't care.

halfmatthalfcat 4 days ago | parent | prev [-]

With AOT tho that should be somewhat moot.

poemxo 4 days ago | parent [-]

I am just explaining why it has that reputation.