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