Live data from Hacker News

App Engine vs Heroku

news.ycombinator.com

1–10 of 11 posts

App Engine vs Heroku

#1
Hi,

I am currently considering two options as a back-end to a CRUD type mobile application: App Engine and Heroku. While it is fairly easy to calculate the costs of the Heroku option, I do not have experience with App Engine so I don't really know what to expect if I get a decent number of hits per day. App Engine looks like the easiest option technically but is this worth having your data and app logic tied to Google's platform?

Have you used App Engine / Heroku lately? Any thoughts?

Thanks!

Re: App Engine vs Heroku

#2
The free tier of App Engine (I'm only familiar with the Python platform) is somewhat accommodating. If it becomes too expensive, you may choose to move your app to your own machines running Typhoonae or Appscale. Neither of those is easy to install.

Heroku runs more portable things you can easily deploy on your own boxes.

Re: App Engine vs Heroku

#5
I've switched from app engine to heroku. Even if you can get past the vendor lock in, carefully review the limitations: file-size, collection size, etc. They may have good reasons for these, but I spent more time working/thinking around these than I expected.

I AppEngine is a great platform for getting an app off the ground, and for a POC... but beyond that I wouldn't recommend it.

-Ben

Re: App Engine vs Heroku

#9
App engine is great, especially for small teams. I personally like webapp2 and click to deploy.

It's important to note the various limitations(file size,writes to file system,etc).

Re: App Engine vs Heroku

#10
post #5

I've switched from app engine to heroku. Even if you can get past the vendor lock in, carefully review the limitations: file-size, collection size, etc. They may have good reasons for these, but I spent more time working/thinking around these than I expected. I AppEngine is a great platform for getting an app off the ground, and for a POC... but beyond that I wouldn't recommend it. -Ben

Hi Ben,

I know I would get to beta 1 or a prototype faster on app engine but I did not know the limitations you mention would cause such headaches. I thought we had more room.

What I like of app engine is the search service but I think it could become costly - there is no price right now but the api call limits seem rather low. And I see that you can do full text search in Postgres at no additional cost than the monthly database plan.

Post reply on HN