Re: [google-appengine] Size of int in datastore

2015-03-03 Thread 'Alex Martelli' via Google App Engine
On Tue, Mar 3, 2015 at 10:09 AM, Jeff Schnitzer wrote: > GAE/Java stores all integer numbers as 64 bit protobuf values. I presume > all other > That's what is seen at the application-programming interface layer. What's actually *stored* may take a different number of bytes, as per protobuf "wir

Re: [google-appengine] Size of int in datastore

2015-03-03 Thread Jeff Schnitzer
GAE/Java stores all integer numbers as 64 bit protobuf values. I presume all other runtimes do the same, otherwise there would be compatibility problems when reading from the datastore. Jeff On Tue, Mar 3, 2015 at 6:56 AM, 'Alex Martelli' via Google App Engine < google-appengine@googlegroups.com>

[google-appengine] Re: Mutiple fetches on GAE causing invalid handle

2015-03-03 Thread Leonardo Pinheiro Ferrari
Mario, Thank you for helping ! I already have, I'm kinda desperate with this issue so I decided to post both here and on SO. Hope someone can help me ! http://stackoverflow.com/questions/28814891/mutiple-fetches-on-gae-causing-invalid-handle Thank you On Tuesday, March 3, 2015 at 11:41:35 AM UT

Re: [google-appengine] Size of int in datastore

2015-03-03 Thread 'Alex Martelli' via Google App Engine
In as much as protocol buffers are used in the underlying, #bytes depend on the exact value of the integer -- see https://developers.google.com/protocol-buffers/docs/encoding . Alex On Mon, Mar 2, 2015 at 3:25 AM, Ashley Finney <2dea...@gmail.com> wrote: > Hi all, > > If the size of int is mach

[google-appengine] Re: Mutiple fetches on GAE causing invalid handle

2015-03-03 Thread Mario
Hello Leonardo, I'd suggest you to write this technical trouble-shooting question in Stackoverflow . There are two main reasons for this: 1. There are more users there that could help you. 2. Once your question is answered, it would be easier to find in the

[google-appengine] Tip of the hat...

2015-03-03 Thread Joshua Smith
In the spirit of also acknowledging when google does something RIGHT, that new itemized invoice is TERRIFIC! It not only says what app I’m getting charged for, but it even lists the specific things that led to those charges. Way to go, google! -Joshua -- You received this message because you

[google-appengine] java.lang.NoClassDefFoundError after deployment to GAE

2015-03-03 Thread Syed Rizvi
Hi, I have a web app that uses a cron job in the beginning to fetch data from a URL, works on it and serves to external clients. The project runs perfectly on the local machine without a single error but as soon as you deploy, the cron results in the following: Uncaught exception from servlet

[google-appengine] Re: Loading up data in the init() method

2015-03-03 Thread Syed Rizvi
Hi Vinny, Sorry for the late response. I followed some suggestions of yours and have now decided to rather initialize the dataset as a cronjob since that allows more time for a job to be completed. Plus the dataset needs to be continuously updated from the source URL so I could schedule the cro

[google-appengine] Mutiple fetches on GAE causing invalid handle

2015-03-03 Thread Leonardo Pinheiro Ferrari
I'm having trouble with GAE when doing several *SYNCHRONOUS* requests with the same query parameters. My query: Query q = ofy().query(Movimentacao.class).ancestor(ANCESTOR_KEY); q.filter("codStatus =", MyEnum.ENVIADO); q = q.order("datMovRegistrada").limit(1); return q.

[google-appengine] All category app

2015-03-03 Thread Puzzle app and game
Windows App Cloud -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-appengine+unsubscr...@googlegrou

[google-appengine] app cloud

2015-03-03 Thread Puzzle app and game
App Category -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-appengine+unsubscr...@googlegroups.com. To post to t

[google-appengine] Size of int in datastore

2015-03-03 Thread Ashley Finney
Hi all, If the size of int is machine dependant, how many bytes are used when int is specified as a datastore field? Will this change depending on the machine that stored the entity? Or are int fields stored as size independent type? Specifically I'm using Go if that matters. Many thanks, Ash