Google Cloud Datastore - Objectify vs. JPA DataNucleus (performance comparison)
Please see current performance test results: https://github.com/maciej-arkit/GAE-Datastore-Performance-Test/blob/master/results/Objectify_vs_JPA_-_performance_test_plan.ods There is no clear winner regarding performance - both JPA and Objectify may perform better in some areas but none perform better in all tests. Tests listed below cover only specific cases. Practical experience shows that Objectify performs much better and it significantly boosts development efficiency over JPA, due to convenient documentation and general robustness. If you are using JPA (DataNucleus) on top of Datastore, you may think about migrating your application to Objectify for following reasons: Objectify is easy to use (it has lightweight API) JPA is not recommended by Google to be used with Datastore (because it doesn't corresponds to non-relational nature of Datastore) DataNucleus JPA is not activelly supported for Datastore, and there is no such plan, which means that no bugfixes/enhanceme...