Tagged Questions
0
votes
0answers
229 views
Too many data type queries on creating persistent manager with datanucleus
We found the performance of connecting to a remote postgres database is very bad with datanucleus and postgresql jdbc. The reason is there are many queries generated to query the data type table: ...
0
votes
1answer
218 views
In AppEngine (JDO), what is the difference between equality (==) of an item with list and contains() function?
For example, if I have: List A; and a String B;
What is the difference, in JDO (AppEngine), between the following two conditions in a query: B == A; and A.contains(B);?
Also, does the query in ...
0
votes
2answers
135 views
Is there a significant difference in performance between low-level datastore API and JDO/JPA?
Should I expect a noticeable performance boost after switching from JDO/JPA to low-level datastore API? Also, are there any things I should be aware of before switching?
0
votes
1answer
177 views
Google Datastore w/ JDO: Access Times?
I'm hitting what appears (to me) strange behavior when I pull data from the google datastore over JDO. In particular, the query executes quickly (say 100 ms), but finding the size of the resulting ...
2
votes
6answers
3k views
Google app engine: Poor Performance with JDO + Datastore
I have a simple data model that includes
USERS: store basic information (key, name, phone # etc)
RELATIONS: describe, e.g. a friendship between two users (supplying a relationship_type + two user ...
0
votes
1answer
568 views
Google App Engine / JDO : is there a session cache?
Since there is no way to join tables using Google App Engine datastore, I loop over a list of entities and look up the related entities one-by-one using the foreign key value.
for (Employee staff: ...