Reputation: 5670
I have two questions regarding Quarkus:
Can quarkus be used with ANY java library when NOT using native mode? I don't understand the sense of quarkus extensions, for example, the extensions provided in https://github.com/quarkiverse for non native images. Are these extensions only needed when using quarkus in native mode?
I read Quarkus extensions nediness, but it vague describes if I can run any java lib in quarkus (when not using native images) without adaptions.
When comparing Quarkus with Wildfly, then it is obvious that Quarkus starts faster, BUT is quarkus also faster (and more memory friendly) while running the application in the long term (24 hours x 7 days)? I have read that, for example, speed and memory consumption on start is better in quarkus than wildfly, BUT when comparing runtime, then the story can be different because of quarkus non dynamical approach (e.g. quarkus bypasses JIT). Is that true? And if so, why?
Currently, I use Wildfly but I am considering to switch to Quarkus if (and only if), it supports all java libs out of the box in non-native mode (like wildfly) and is also better regarding speed and memory consumption while running the application in the long term (and not only at startup).
Upvotes: 0
Views: 277
Reputation: 1318
As per the wiki(https://github.com/quarkiverse/quarkiverse/wiki) quarkiverse is for all the extensions that didn't find its place in quarkus-core project.
Quarkus does not bypass JIT, It just perform the same thing differently
Upvotes: 1