I was reading about the low level cache API, and I noticed that you
could cache None (implied by the recommendation not to do so). It made
me wonder if I could cache other Python-specific objects, like
dictionaries, lists, ORM Model instances, etc. Are there differences
between a normal model instance and one that you pull from cache (ie,
does it deep copy, etc). Also, would there be implications for this
with different caching backends (thinking of file-system cache; does
it use Pickle), etc.  Perhaps a better explanation of what's going on
behind the scenes would be helpful.

It does cache custom objects, of course but for those who haven't used
it it appears to only cache "hello, world!" and strings in general
based on the docs.

-- 
You received this message because you are subscribed to the Google Groups 
"Django developers" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/django-developers?hl=en.

Reply via email to