Google App Engine Google Group:
Hello All, I am a python newbie. My friend, who is a python guru solved it for me. I just had to add '/vendor' directory in PYTHONPATH. I have solved this on my local instance. I haven't done it yet on appengine though. Regards, Cage. (Read More)
Google App Engine Google Group:
Google App Engine is mostly oriented to Web applications. 1Mb size is enough for full screen pictures for most monitors. May be this one of the reasons. (Read More)
Google App Engine Google Group:
Rein, Can you create a ticket in our issue tracker? [link] -- Ikai Lan Developer Programs Engineer, Google App Engine. (Read More)
Google App Engine Google Group:
Arun, Which actions are triggering the DeadlineExceededError? What are you trying to do in these actions? On Fri, Nov 13, 2009 at 5:43 AM, Arun Shanker Prasad < -- Ikai Lan Developer Programs Engineer, Google App Engine. (Read More)
Google App Engine Google Group:
Lucian, what environment are you getting this in? I'm assuming this is on your development machine. Can you post your OS, Java and SDK versions? -- Ikai Lan Developer Programs Engineer, Google App Engine. (Read More)
Google App Engine Google Group:
It can be done in Python version by using eval statement or type()/classobj() function: from google.appengine.ext import db property = {'string': db.StringProperty, 'rating': db.RatingProperty} Book = type('Book', (db.Model,), {'title': property['string'](), 'author': property['string'](), 'rating': property['rating']( (Read More)
Google App Engine Google Group:
I Should add that the memcache is properly set (memcache.Set), and shows "set_status: 1 ". So the problem is that the next view of the page does not ever get the cached version. No visitor ever gets a "memcache.Get" What (in App Engine and/or Django) tells a new Request to get a cached Response?. (Read More)
Google App Engine Google Group:
Did you also take overall code size and number of loaded modules (in particular on first load) into account? If you have 100% the same code and the only difference is use_library vs aep then this might indicate an io bottleneck in case the integrated Django package is loaded from a different volume/network than the user (Read More)
Google App Engine Google Group:
Hi GAEfan, It's not currently possible to set exact times for jobs that are more frequent than daily. The App Engine runtime will schedule them regularly, but at times it sees fit. If you need them to run at specific times you could, for example, run a daily cron job that enqueues task queue tasks to. (Read More)
Google App Engine Google Group:
No, only one action should be invoked. It's invoked in standard servlet-mapping precedence order. -- Ikai Lan Developer Programs Engineer, Google App Engine. (Read More)
Google App Engine Google Group:
What is the exact error? Also, can you host a static asset and try to retrieve it with the Android application? I want to rule out that it's a connectivity issue. 2009/11/11 Per Sandström -- Ikai Lan Developer Programs Engineer, Google App Engine. (Read More)
Google App Engine Blog:
Here are some of the recent developments from the greater developer community.deferred.deferNick Johnson recently added a new module to the App Engine Python SDK which allows you to use the task queue service to execute deferred function calls. This library requires minimal configuration and makes it even easier to use task (Read More)
Google App Engine Google Group:
You should use Google Apps to 'map' your domain to App Engine [link] This way the visitor accesses your actual pages using your actual domain, rather than the appspot domain. 2009/11/9 kghate :. (Read More)