Added link to Python Pickle documentation in docs/topics/cache.txt.
Some checks failed
Docs / spelling (push) Has been cancelled
Docs / blacken-docs (push) Has been cancelled
Docs / lint-docs (push) Has been cancelled

Co-authored-by: Rida Zouga <ridazouga@gmail.com>
This commit is contained in:
Rida Zouga 2025-11-30 08:29:43 +01:00 committed by GitHub
parent 7b32485ee9
commit 3ea0195ca5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -863,8 +863,8 @@ For cases like this, Django exposes a low-level cache API. You can use this API
to store objects in the cache with any level of granularity you like. You can
cache any Python object that can be pickled safely: strings, dictionaries,
lists of model objects, and so forth. (Most common Python objects can be
pickled; refer to the Python documentation for more information about
pickling.)
pickled; refer to the :mod:`Python documentation <pickle>` for more information
about pickling.)
Accessing the cache
-------------------