[google-appengine] Endpoints work fine in local server, not when deployed

2015-01-31 Thread Steve P
Note: I'll use the terms "back end" and "front end" as practical concepts, as I don't profess know the subtleties of the definitions. I'm an advanced hobbyist programmer, not a professional. I'm using Eclipse Juno for development. Minimum Target is Android 2.3.3 I built a android app which I

Re: [google-appengine] Re: Datastore: how to design for huge time-series data

2015-01-31 Thread gregory nicholas
i've got some code for this from a recent project . hit me up . log individual events, then run map reduce to aggregate into time slices also by field values to create preagrregrated counts . querying is not as nimble as say mongo, so this works, but a few extra steps -- You received this mess

[google-appengine] Custom status

2015-01-31 Thread robinphase15
Hi All, I am working on RESTful web services using java. We all love REST-full-ness, so I'd like to return more REST-ful status codes from my endpoints. (Example: 201 CREATED along with JSON contents in response body. But I can't find any way to set the HTTP status code. Can anyone help plea

Re: [google-appengine] Re: Datastore: how to design for huge time-series data

2015-01-31 Thread timh
Have a look at nimbits it stores time series in appengine datastore. It's written in java, but the data models used should be straightforward to translate into NDB. T On Friday, January 30, 2015 at 4:32:52 AM UTC+8, Shailendra Singh wrote: > > Hi Rafael > > It's a old thread, but can you pleas