[google-appengine] Re: Datastore updates in 1.3.1: So much better

2010-02-14 Thread Alex Popescu
Indeed, the new release sounds really exciting. But I must confess I've still a bit confused about the removal of the "1000 result limit" as it looks like it wasn't removed from all the places, but the docs are not really clear about it. A place where the 1000 limit seems to still apply is queries

Re: [google-appengine] Re: Why i don't use Google App Engine... and don't recomend it to you

2010-02-14 Thread Danny Tuppeny
There have always been two things that stopped me using Git/Github. I do like Git (I use GitX on my Mac for iPhone stuff, and it's great). 1. I already use Google Code for some open source stuff (eg. http://google-wave-notifier.googlecode.com/ ) and it'd be nice to keep them together. 2. Last tim

Re: [google-appengine] Re: Why i don't use Google App Engine... and don't recomend it to you

2010-02-14 Thread Danny Tuppeny
We understand you. We don't understand why you don't respond to people trying to help you. Eg. you posted here: http://groups.google.com/group/google-appengine/browse_thread/thread/f6ef2c306d1b8540/d5d9b40e5bb0facd#d5d9b40e5bb0facd And Wooble made a suggestion (assuming your account was an Apps

Re: [google-appengine] Re: how large data can i use in App Caching and how long will it be cached?

2010-02-14 Thread Eric Ka Ka Ng
Hi dburns, according to http://code.google.com/intl/en/appengine/docs/python/runtime.html#App_Caching handler script with main() would cache itself and the global env as an imported module however, in my case, I have a variable defined inside a module that would be imported (and cached) , but i

[google-appengine] Re: Cannot use key and key_name at the same time with different values

2010-02-14 Thread Wesley Tanaka
This should be fixed in revision 53 http://code.google.com/p/google-app-engine-django-openid/source/detail?r=53 Wesley Tanaka http://wtanaka.com/ On Feb 11, 11:00 am, Toru Tomita wrote: > Yes, Me too, > > I get same problem. > > 1.3.1 current production env in /base/python_lib/versions/1/google

[google-appengine] Re: Application seems to restart after arbitrary amount of time...?

2010-02-14 Thread Tim Hoffman
Hi Each framework out there will have different impacts on startup time. (I don't use java, but I gather they have introduced some precompile options that could help) For my python apps I try to stagger or lazy load components, so startup is often not an issue. For instance I serve pages from mem

Re: [google-appengine] Re: how large data can i use in App Caching and how long will it be cached?

2010-02-14 Thread Darren Burns
Hi Eric, Try modifying your import like this: import mymodule mymodule= reload(mymodule) # Prevent caching of mymodule See if that works. It worked for me in another context. DB - Original Message - From: "Eric Ka Ka Ng" To: Sent: Sunday, February 14, 2010 6:30 AM Subject: Re:

[google-appengine] Am I allowed to host my site at app engine?

2010-02-14 Thread Flips
Hi, I have a site that provides a conversion service for several video sites e.g. YouTube or MySpace. You have to enter the url of a video and my service loads this video and converts the video to mp3. The site is growing and I would like to deploy the frontend at google app engine and process the

[google-appengine] Re: how large data can i use in App Caching and how long will it be cached?

2010-02-14 Thread Stephen
On Feb 14, 11:30 am, Eric Ka Ka Ng wrote: > > however, in my case, I have a variable defined inside a module that > would be imported (and cached) , but i would like to have that > variable be re-initialized in every requests. In particular, with this > example > > ### mymodule.py > counter = 0

[google-appengine] Re: Why i don't use Google App Engine... and don't recomend it to you

2010-02-14 Thread Stephen
On Feb 14, 10:54 am, Danny Tuppeny wrote: > There have always been two things that stopped me using Git/Github. I > do like Git (I use GitX on my Mac for iPhone stuff, and it's great). > > 1. I already use Google Code for some open source stuff > (eg.http://google-wave-notifier.googlecode.com/)

Re: [google-appengine] Re: Why i don't use Google App Engine... and don't recomend it to you

2010-02-14 Thread Danny Tuppeny
> If you're just concerned about backing up private repositories then > you could always export and either email it to yourself or upload to > Google Docs.  The export format is highly compressed (more so than the > Git export format) so unless you are tracking a lot of large binaries > this will b

[google-appengine] Re: Verification email not received when adding new developer

2010-02-14 Thread A1programmer
I still do not seem to be getting the verification emails while attempting to add more developers. This is pretty discouraging, at best. On Feb 12, 2:15 pm, A1programmer wrote: > Right.  Theemailcontaining theverificationlink isn't being sent to > the address.  I've resorted to using the primar

Re: [google-appengine] Re: Why i don't use Google App Engine... and don't recomend it to you

2010-02-14 Thread Jesaja Everling
I also recommend bitbucket. There is a free plan that lets you create one private repository, and the cheapest paid plan is only 5$ (5 private repositories). The free plan even offers all the features of paid plans except support for CNAMEs. You can of course also just clone your repositories to an

[google-appengine] Re: Unable to appcfg.py update my app

2010-02-14 Thread Angel
I still continue with the problem, I can upload perfectly to a development account but not the live one (uploading exactly the same code). Any suggestion on what to change or try? I've tried also to delete the cookies and several computers as I think I read somewhere that it could be a problem of c

Re: [google-appengine] Re: how large data can i use in App Caching and how long will it be cached?

2010-02-14 Thread Eric Ka Ka Ng
great thx to Darren and Stephen! Stephen's solution is very simple and easy, and it works for me. I believe Darren's one works too but finally i choose Stephen's one as this gives finer control and I can adjust when to retain the counter value, when to reset, without scarifying the performance whil

Re: [google-appengine] Re: Select columns

2010-02-14 Thread Manny S
Thanks Eli, I was trying to use the Key string for ordering and pagination. Guess I will have to look into creating a separate field for pagination. Thanks, Manny On Sat, Feb 13, 2010 at 10:00 PM, Eli Jones wrote: > No can do this: > > "An application should not rely on numeric IDs being assign