Ticket #20493: 20493.diff

File 20493.diff, 754 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..c57816c 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'll want to consider whether or
     94not you'll need to clear your cache after upgrading. You may run into problems,
     95for example, if you are caching pickled objects
     96(:class:`~django.http.HttpResponse`, for example) in Django as these objects
     97are not guaranteed to be pickle-compatible across Django versions.
Back to Top