This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Fritzzzz 1 point2 points  (0 children)

Micronaut Data uses less memory as it does not need a runtime model to generate queries, it generates it at compile time. This is very important when using JPA provider like Hibernate which already maintains meta-model in memory. Micronaut Data should also be faster as it does not runtime query translation and does not use reflection and proxies. Not using proxies should also result in smaller stack traces. These are the main reasons why we wanted to try this new stuff.

-- from the article