diff --git a/docs/howto/upgrade-version.txt b/docs/howto/upgrade-version.txt
index 8777f43..c57816c 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'll want to consider whether or |
| 94 | not you'll need to clear your cache after upgrading. You may run into problems, |
| 95 | for example, if you are caching pickled objects |
| 96 | (:class:`~django.http.HttpResponse`, for example) in Django as these objects |
| 97 | are not guaranteed to be pickle-compatible across Django versions. |