Ask HN: Who's using Google App Engine?
1–10 of 48 posts
Re: Ask HN: Who's using Google App Engine?
#2As for SSL. I mean come on. It's 2011, it's absolutely unbelievable they don't support SSL for custom domains. Unbelievable.
Re: Ask HN: Who's using Google App Engine?
#3Re: Ask HN: Who's using Google App Engine?
#4- the datastore is extremely scalable if you use it as intended.
- your app can automatically scale up and down (as if an invisible genie were moving the little "workers" slider that Heroku uses)
- always on instances make your app mega fast, even at low volume (but cost a tad bit more).
- there are a lot of useful apis (memcache, queue, email) and a nice development environment.
- it usually "just works" and "just scales".
a few bad things:
- they had some very annoying downtime while they sorted out the datastore architecture problems (where theory and practice had differed with horrible results)
- the OSX dev tools don't bundle the correct version of python and associated libs, which makes it a pain to get a working dev environment on OSX without breaking your system's python.
- no naked domains, SSL support for normal apps that aren't priced per user.
All in all I'd rather write an app for AppEngine than any other cloud system, though Heroku is catching up -- both could really benefit from prioritizing 24 hour support via irc though.
Re: Ask HN: Who's using Google App Engine?
#5Re: Ask HN: Who's using Google App Engine?
#6I use appengine for all my web apps, it works for most of basic webapps, here are a few I have used appengine for: http://gramfeed.com, http://shaloc.com, http://checkinmania.com, http://misotrendy.com
Re: Ask HN: Who's using Google App Engine?
#7Re: Ask HN: Who's using Google App Engine?
#8Re: Ask HN: Who's using Google App Engine?
#9App Engine has a lot of really awesome features going for it. There are some pains for sure, but not the ones you find people typically griping about. The datastore and all of that aren't a big deal. What's annoying is the lack of library compatibility, and no real SSL suport. Having access to a relatively small subset of available libraries for Java/Python sucks, each time you find a library you'll have to find out…