Den 14/01/2014 kl. 14.32 skrev Anu Malik <[email protected]>: > I'm new in Django,i am not sure how pickling/caching works?
There’s a description of Django caching here: https://docs.djangoproject.com/en/dev/topics/cache/ Django uses the Python pickle module internally: http://docs.python.org/2/library/pickle.html Except for sessions, where JSON serializing is used (from Django 1.6, at least: https://docs.djangoproject.com/en/dev/releases/1.6/#default-session-serialization-switched-to-json). Erik -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/03FFCA2A-1111-4555-B9FC-DB138740E0AD%40cederstrand.dk. For more options, visit https://groups.google.com/groups/opt_out.

