[google-appengine] Re: Cloud Endpoints Not Updated After Deployment

2015-12-17 Thread Phua Khai Fong
e issue from the other side of the world, with no access to your system. >>> >>> Best of luck! >>> >>> >>> >>> On Tuesday, December 8, 2015 at 7:21:22 PM UTC-5, Nick (Cloud Platform >>> Support) wrote: >>>> >>>

[google-appengine] Re: Cloud Endpoints Not Updated After Deployment

2015-12-07 Thread Phua Khai Fong
Update: If I use appcfg.py to deploy, the cloud endpoints gets updated. Only when using gcloud it does not get updated. On Tuesday, 8 December 2015 08:45:14 UTC+8, Phua Khai Fong wrote: > > This started yesterday for me from 7th Dec 2015. > > After successful deployment of an ap

[google-appengine] Cloud Endpoints Not Updated After Deployment

2015-12-07 Thread Phua Khai Fong
This started yesterday for me from 7th Dec 2015. After successful deployment of an app, the cloud endpoints part is not updated. Checking from the admin console logs, both /_ah/spi/BackendService.logMessages and /_ah/spi/BackendService.getApiConfigs return status 200 If I use api explorer on

[google-appengine] What is the limit on the size of data that can be stored in memcache?

2009-06-25 Thread Khai
With traditional memache, we can cache data upto 1M in size. Is this the same for GAE? Thanks! Khai --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, sen

[google-appengine] Is there a way to get entities with empty list property

2009-06-25 Thread Khai
I have a model: class BlogEntry(db.Model): content = db.TextProperty() tags = db.StringListProperty() To fetch entries that had been tagged with 'Math', I would write a GQL: BlogEntry.gql("WHERE tags = :tag", tag = "Math") How can I fetch entries that had not been tagged? --~--~---

[google-appengine] Should I use app-engine-patch or App Engine Helper for Django

2009-05-12 Thread Khai
I've tried to read the articles on using django with appengine, but I am confused. Should I go with "App Engine Helper for Django" or should I go with "app-engine-patch"? Thank you so much! Khai Doan --~--~-~--~~~---~--~~ You received

[google-appengine] Re: dev_appserver.py and ListenBackLog directive

2009-04-06 Thread Khai
ten", and it signature is: int listen(int sockfd, int backlog); I've grep the development SDK source for 'listen(' but did not find it. I am confused. Is the listen() system call being used at all? I am running dev_appserver.py on Linux. Please guide me in the right direction.

[google-appengine] Re: Running dev_appserver.py under a mod_python

2009-04-06 Thread Khai
more than a couple of thousand entities in it and it is uncertain if it > can share a "datastore" across multiple instances. > Why do you want to do this? What is wrong with hosting on GAE? > > > > On Sat, Apr 4, 2009 at 11:04 PM, Khai wrote: > > > Before I t

[google-appengine] dev_appserver.py and ListenBackLog directive

2009-04-04 Thread Khai
queue of pending connections (this would save me some time from having to dig through the source code)? Can we make this a configurable command-line option? Any responses would be appreciated. Thanks Khai --~--~-~--~~~---~--~~ You received this message because yo

[google-appengine] Running dev_appserver.py under a mod_python

2009-04-04 Thread Khai
e? What is the degree of difficulty? I am very novice with GAE, and I have never done anything with mod_python. Has anyone try this before? Would anyone willing to try it and share it with the group? Any responses / advices would be greatly app

[google-appengine] Re: HTTP/1.1 and HTTP/1.0 issue in dev_appserver.py

2009-03-31 Thread Khai
CGIHandler().run(application) I was not able to add "Connection:close" header to the response. On Mar 31, 1:09 pm, Khai wrote: > I am writing an opensocial application which communicate with my GAE > application (not released yet).  The social application use > gadgets.i

[google-appengine] HTTP/1.1 and HTTP/1.0 issue in dev_appserver.py

2009-03-31 Thread Khai
I am writing an opensocial application which communicate with my GAE application (not released yet). The social application use gadgets.io.makeRequest() to make three requests. Google OpenSocial agent (http://www.google.com/feedfetcher.html) makes 3 requests to my GAE application, however may ap

[google-appengine] Please critique

2009-03-18 Thread Khai
I have this code: peoples = memcache.get(first) if people is not None: peoples = pickle.loads(peoples) else: peoples = People.gql("WHERE first = :first", first = first) memcache.set(first,peoples) peoples = memcache.get(first) peoples = pickle.loads(peoples) for p in peoples:

[google-appengine] Please copy the logging functionality of the Administration Console to the Development Console

2009-03-18 Thread Khai
According to http://code.google.com/appengine/articles/logging.html, live apps can log information and have it displayed in the Administration Console. Is it possible to copy this functionality to the Development Console? I am aware that I can append ?debug to my URL, however, my application doe

[google-appengine] What can I use memcache for?

2009-03-18 Thread Khai
Can I use memcache to a python array? Do I need to serialize the data before putting it into the cache? Can I use memcache to cache a model instance? Thanks! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google