views:

100

answers:

1

Given that django-nonrel has got JOINs working, does this mean we have M2M fields workable with Django now in GAE?

What other current restrictions does Django have in GAE?

+1  A: 

This blog post was an April 1st joke

Some limitations still apply:

Many advanced Django features are not supported at the moment. A few of them are:

JOINs

many-to-many relations

multi table inheritance

aggregates

no transactions (but you can use transactions from App Engine's SDK if you really need them)

QuerySet.select_reated

jbochi