Tagged Questions

2
votes
1answer
41 views

Error message when querying the datastore

I am new to Java, Eclipse, Google App Engine and the Datastore and am writing my first app to teach myself some new technology both for work and for professional development purposes. I have a Java ...
1
vote
0answers
4 views

Datastore in GAE Testing environment leaks data between JUnit tests

i have the following problem. I want to do some automated datastore tests for the Google App Engine locally with Junit. I have written a class 'Agent.java' with three Strings 'name', 'owner' and ...
1
vote
1answer
50 views

Aside from RPC calls, what could be taking my App Engine Program so long

I'm trying to performance optimize a page load in GAE, and I'm a bit stumped what is taking so long to serve the page. When I first got appstats running I found the page was calling about 500-600 RPC ...
1
vote
1answer
128 views

Google App Engine Performance - Checking Existence of an Object

I am coding a system using Google App Engine and I need to put an object in the datastore only if it doesn't exist yet. I would be fine using the datastore.put() method, except I need to know whether ...
1
vote
1answer
153 views

Reduce datastore_v3.Next calls in Google App Engine when fetching objects (java), possible?

I'm trying to optimize code that reads objects from Google's datastore. Using Java and JDO, here is my code: List<Article> articles = (List<Article>) query.execute(articleId); ...
1
vote
2answers
67 views

What is the highest possible key string in a range query on GAE/J?

Out key space on google app engine is structured like banana-a3fadawsgdg banana-hrgsgsgsdgs banana-regsgsdgsgg tomato-fsfg33424ff tomato-dsfgsgasdgs i.e. there is a type and a unique part encoded ...
1
vote
2answers
104 views

Generating id in the low level API

I have to use the low level API to persist an entity of type Value in Google App Engine. I've been searching and I have only found a examples in this way: DatastoreService datastore = ...
1
vote
1answer
237 views

Using Java in Google App Engine, what's the best way to store and access large, static data?

I have my most of my apps "dynamic" data stored in the datastore. However, I also have a large collection of static data that would only change with new builds of the app. A series of flat files ...
1
vote
2answers
52 views

Can I specify an Entity as a Datastore property to achieve join-like functionality?

For example, I have the entity Parent and the entity Child. Since the Datastore does not allow joins, I cannot specify parentKey as a property in Child. I mean, I can but that won't do me any good. ...
1
vote
2answers
138 views

Best way to store data securely?

I am looking for way to store some data. I want to users of my program to be able to choose a way to store data. They can choose database (PostgreSQL, MySQL) and I want to give opportunity to choose ...
0
votes
1answer
41 views

Adding a child Element in GAE database

I have a persistent object that has a huge list of child elements. I'm trying to add a new element, but to retrieve the list i spent a lot of read operations. How can I add this elements without get ...
0
votes
1answer
32 views

Properties as indexed map in gae-datastore

I have a little but important doubt about Low-Level Datastore from Google App Engine. I need a document structure like this : {infNfe id="1234" det={nItem="1",prod="prodname"}, ...
0
votes
1answer
56 views

Anybody knows how to export in Java data from google app engine datastore to fusion tables ?

A Java library ? Something like datastore2FusionTable(kind) -> id of fusion table
0
votes
0answers
66 views

gae - is it possible to divide the app

Is it possible to design the app on gae in that way - admin part - gwt, guice - user part - guice, html, js They should be independent for performance reason. As I know the app can be started on each ...
0
votes
1answer
57 views

Holding different instances of the same class in GAE Datastore

Extremly confusing title, i know. Hello, i am facing some funky issues here. I have a property-class, like this @PersistenceCapable public class Property implements Serializable { @PrimaryKey ...
0
votes
2answers
97 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
77 views

Changing entity-classes problem with development for app-engine

My problem is pretty much obvious: I had a class named TaskDescription which corresponded to a kind (table) in App Engine Datastore. Then I've renamed it to TaskContent and all stored data is ...
0
votes
0answers
121 views

App Engine Datastore Query overrides changes (Java/JDO)

I would like to do the following in the AppEngine: Open PersistenceManager Query for some Records and change some values Perform a different query that might retrieve the same objects as in 2. Close ...
0
votes
2answers
156 views

How to get a Text field from a appengine datastore element from the client side

I have a class to be saved into appengine datastore, which among others contains, a Text field (String-like appengine datatype, but not limited to 500 chars). Also a twin class which is basically the ...
-1
votes
1answer
288 views

key - > value store with binary attachments

An extra requirement is that the attachments can be stored as a stream, as there might be potentially very large binaries that has to be saved. Videos etc. I have looked at Voldemort and other key ...