Re: [google-appengine] Re: Java: how do I access per-instance shared memory from an Endpoint?

2015-07-05 Thread Jeff Schnitzer
Patrice: Dagger is a dependency injection framework like Guice. He's asking how you create a singleton object in Java webland. Zak: There are lots of ways of doing this. First of all, you do not want to try to create some sort of cross-instance object graph; each instance should instantiate the Ob

[google-appengine] application stopped working , instances = 0

2015-07-05 Thread navneet
my 7 months old deployed application suddenly stopped working , then it started working again , but even no when no of instances = 0 , how can i make it = 1 . please help .and how is it even working now if instances = 0. "http://ridemetricwebsite.appspot.com/"; -- You received this message b

[google-appengine] Google IDs produced by the Users service seem to differ from those produced by OAuth2

2015-07-05 Thread tempy
I have a production app on GAE that's been running for a while. I've been using the Users service for authentication, and my user entities in the datastore hold on to the unique account ID provided by the users service. Now, I want to bolt on some new functionality that will live outside of the

[google-appengine] Re: PHP script can't read file from vfs:// (in memory file system) created by my other PHP script

2015-07-05 Thread Stuart Langley
Files that you write to vfs are removed at the end of the request. If you need the files to persist between requests you'll need to write or move the files from vfs to gs. On Sunday, 5 July 2015 04:04:11 UTC+10, Alex Kerr wrote: > > Hi, > > I've got my main PHP script writing an image file out t