Changes between Version 12 and Version 13 of AppEngine


Ignore:
Timestamp:
Feb 25, 2009, 6:45:50 AM (16 years ago)
Author:
Waldemar Kornewald
Comment:

added summary

Legend:

Unmodified
Added
Removed
Modified
  • AppEngine

    v12 v13  
    88
    99The following might also apply to other cloud hosts which provide special database and communication interfaces.
     10
     11== Summary ==
     12
     13The most important changes at the Django level are:
     14 * support for setting an owner model for !ManyToManyFields (i.e., there is no intermediary table and the field's data could be stored on either the model defining the relation or on the other model) and !ModelForm should handle that case efficiently (i.e., try to save the relations together with the model instead of afterwards in save_m2m)
     15 * support for !ListField (stores a list of values of a certain type; DB backends could use this internally for !ManyToManyFields without an intermediary table) and [http://code.djangoproject.com/ticket/2417 BinaryField]
     16 * support for batch save() and delete()
     17 * support for email backends
     18 * support for running Django from a zip package
    1019
    1120== Reminder: Datastore and request limitations ==
     
    102111The following field types have to be ported to Django:
    103112 * !ListProperty
    104  * !BlobProperty
     113 * !BlobProperty (see [http://code.djangoproject.com/ticket/2417 BinaryField])
    105114
    106115== Zipimport ==
Back to Top