[google-appengine] Re: MS-HR Migration Post-Mortem

2011-06-24 Thread Casey Dwyer
Hi Greg, >The extra cost is a small price to pay (literally) to escape the maintenance outages, datastore timeouts and high-latency requests that plague the master-slave datastore. - TFA IIRC, in one of the I/O talks ("More 9s Please" I believe), they said that read latency is about the same a

[google-appengine] Re: App Engine Launcher 1.5.1??

2011-06-19 Thread Casey Dwyer
http://code.google.com/p/googleappengine/downloads/list -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/Z5QPeHCvITgJ. To post to this group, send e

[google-appengine] Re: High Replication Datastore move?

2011-06-12 Thread Casey Dwyer
You could convert the old one into a CDN of the new one. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/5UIc0UaD494J. To post to this group, send

Re: RE: [google-appengine] Cant verify my domain because i don't have a hosting plan

2011-06-12 Thread Casey Dwyer
Google gives you that option for verification. Bing and Yahoo don't. But yeah, wrong forum. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/cNXcXi

Re: RE: [google-appengine] Charging for my app, user authentication and HTTP requests

2011-06-12 Thread Casey Dwyer
Can I add one more thing? Yes. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/NOYrltyGAskJ. To post to this group, send email to google-appengine

[google-appengine] Re: New Bulkloader vs the deprecated Loader class

2011-06-12 Thread Casey Dwyer
I've tried it. I liked it. It's cleaner than the old loader. I ran into all the same problems as you as well as one with empty lists. The import transform I used for lists was "lambda x: x.splitlines() or None" which worked well for importing them, but when I'd try to access an entity with empt

Re: [google-appengine] Register Article on GAE

2011-06-07 Thread Casey Dwyer
I think that 99.9% of the people who complain about App Engine's lack of PHP support are those who would like to use it as a free host to dump Drupal on and aren't necessarily interested in writing their own code, so therefore those of us writing own code on it must be "tinkerers." As far as Ap

[google-appengine] Re: What's the relationship between danga.com memcached and Memcache?

2008-10-25 Thread Casey Dwyer
Brad who created memcached works for Google now, including on Perl App Engine, so there's surely a connection there. Here's his Google Groups profile if you want to shoot him a personal message or post this to one of his groups: http://groups.google.com/groups/profile?enc_user=tB9Pbw4AAACsDAM5OK1

[google-appengine] Re: Dynamic URLs with semicolons work with SDK but not on appspot.com

2008-10-25 Thread Casey Dwyer
ug/semi;colon==http://kc.appspot.com/bug/semi&colon > to the good answer is : "semi" > > So, what I understand, there is a bug in the SDK. > > On 25 oct, 09:55, Casey Dwyer <[EMAIL PROTECTED]> wrote: > > > Hi pr3d4t0r and Sylvain, > > >

[google-appengine] Re: Dynamic URLs with semicolons work with SDK but not on appspot.com

2008-10-25 Thread Casey Dwyer
t;[EMAIL PROTECTED]> wrote: > On Oct 23, 11:17 pm, Casey Dwyer <[EMAIL PROTECTED]> wrote: > > > > > Consider the following code: > > > from google.appengine.ext import webapp > > from google.appengine.ext.webapp.util import run_wsgi_app > > >

[google-appengine] Dynamic URLs with semicolons work with SDK but not on appspot.com

2008-10-23 Thread Casey Dwyer
Consider the following code: from google.appengine.ext import webapp from google.appengine.ext.webapp.util import run_wsgi_app class MainPage(webapp.RequestHandler): def get(self, filename): self.response.out.write(filename) def main(): application = webapp.WSGIApplication([(r'/bug/(.*)