Datanucleus Performance difference between it's JPA & JDO Implentation against RDBMS?

StackOverflow https://stackoverflow.com/questions/19548689

  •  01-07-2022
  •  | 
  •  

Frage

Does anyone happen to know if there is a performance difference using Datanucleus JDO against a Relational Database (e.g. MySQL) in which the same application code and stack is used against the same Relational Database (e.g. MySQL) using again Datanucleus, but with JPA instead?

War es hilfreich?

Lösung

Should be no difference at all ... when you have the same persistence properties selected. The API layer is just that, translating from a standard API into an internal API (pass through in the vast majority of operations). All persistence properties are available for JDO or JPA. Similarly you can use the very same persistence classes (JDO or JPA metadata) with either API, hence no difference in time there.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top