Vosao vs drupal hosting

As it turns out, I asked this same question:

It mostly resolved to two items:

  1. In functionality where webapp and Django overlap, Django tends to be a bit nicer and/or more flexible.
  2. If you were to later want to move away from GAE, Django is a porting goal.

My question (in combination with the wealth of information Daniel Vassallo provided) should answer your question completely.

GAE is a great tool for new and small projects, that do not require a relational database. I use a range of web hosting solutions.

Vosao vs drupal hosting 03    
   The only real problem

1) I built www.gaiagps.com on the App Engine, because it was just some brochureware, and a tiny key-value store for the blog part.

2) My colleague also built a web crawler on GAE, because it was just some simple Python scripts that collected web pages. That app actually sends the data over to EC2 though, where more work is done.

3) I host www.trailbehind.com on EC2 because it uses a geo-database (PostGIS) which you would basically have to implement yourself on App Engine.

4) I host TRAC and SVN on WebFaction, because it's off-the-shelf for any slice there.

If I need to do a site in a couple of days, I use GAE. If it's a large or existing project, or has a funky database, I use something else.

answered Jan 10 '10 at 0:19

I've recently changed my development from webapp to django (using app-engine-patch b/c they have added more features). Check out app-engine-patch here:

I really liked how simple webapp was to use and it had all the tools I needed for a while. However when it came to adding user accounts on to my site I found that I either had to roll my own system (with sessions etc. which can get complicated on GAE) or use google/gmail accounts with webapp.

I didn't want my users to have to sign up for google/gmail first before they signed up with me.

Therefore I'm trying out django with app-engine-patch because they have already implemented the user functionality from django and it seems to work just fine.

With Django vs. Webapp they both have similar performance, and both offer the automatic scalablity etc.

Django has some nifty form validation etc. but i see the user stuff as the biggest difference between the two.

answered Jan 9 '10 at 20:03

The only real problem I ran into was the 1M upload/download limit imposed by GAE. I could upload larger files by using HTTP directly to S3, but I couldn't retrieve them through GAE. I hope they've lifted this restriction since then.

answered Jan 10 '10 at 0:28

If you are looking other GAE CMS frameworks besides Django, take a look at Vosao. It is a Java CMS framework which uses Velocity for templates. The framework is still in alpha and is under heavy development. The current version (0.2.3) is stable and highly functional.

Vosao vs drupal hosting which uses Velocity

You can see an example of a working Vosao site on my personal domain .

answered Feb 16 '10 at 1:56

I prefer webapp. It scales better according to Google and seems to better integrated with the App Engine infrastructure. Plus it's more lightweight.

answered Mar 11 '10 at 20:09

try kay-framework if you are looking for framework specifically designed for google app engine.

answered Apr 7 '10 at 4:34

2017 Stack Exchange, Inc

Watch this video!

Related articles

Keywords seo drupal hostingSEO is an acronym for "search engine optimization" or "search engine optimizer." Deciding to hire an SEO is a big decision that can potentially improve your site and save time, but you can also...
Field tools drupal hostingIntroduction An implementation of an effective search is one of the most difficult tasks in development, but it's also a key to success of many websites and applications. A quick search and...
Change table prefix drupal hostingI have a drupal 7 site running on a webserver, it is currently using a database that was created with out a prefix. I am attempting to restore that database to a new drupal instance from a...
Page callback arguments drupal hosting"Access callback" is the function that is called to verify if the user has access to the page. As special case, it could be the value TRUE. and in that case all the users would have access to...
Uid 0 drupal hostingIt is normal, as Drupal creates that entry when it is installed, for the anonymous user. That is done from user_install() (Drupal 7), or system_install(). which contain the following code. That...