Ticket #20493: 20493.2.diff

File 20493.2.diff, 874 bytes (added by Tim Graham, 11 years ago)
  • docs/howto/upgrade-version.txt

    diff --git a/docs/howto/upgrade-version.txt b/docs/howto/upgrade-version.txt
    index 8777f43..fd018d4 100644
    a b Deployment  
    8989When you are sufficiently confident your app works with the new version of
    9090Django, you're ready to go ahead and :doc:`deploy </howto/deployment/index>`
    9191your upgraded Django project.
     92
     93If you are using caching provided by Django, you should consider clearing your
     94cache after upgrading. Otherwise you may run into problems, for example, if you
     95are caching pickled objects as these objects are not guaranteed to be
     96pickle-compatible across Django versions. A past instance of incompatibility
     97was caching pickled :class:`~django.http.HttpResponse` objects, either
     98directly or indirectly via the :func:`~django.views.decorators.cache.cache_page`
     99decorator.
Back to Top