- jmj
http://www.djangoproject.com/documentation/sessions/#technical-details
You *can* do it, but I wouldn't recommend it. I can easily imagine a
situation where the version you have sotred in the session, and the
version stored in the database could get out of sync. Storing obj.id
and re-retreiving the object will probably be much safer. If you need
to avoid the extra database hit, use the caching framework. :)
Joseph