summaryrefslogtreecommitdiff
path: root/docs/user_guide/inspection.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/user_guide/inspection.md')
-rw-r--r--docs/user_guide/inspection.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/user_guide/inspection.md b/docs/user_guide/inspection.md
index 98db7e6..873f6a3 100644
--- a/docs/user_guide/inspection.md
+++ b/docs/user_guide/inspection.md
@@ -75,6 +75,10 @@ Get keys for **only** expired responses:
>>> keys = [response.cache_key for response in expired_responses]
```
+### Deleting responses
+Use {py:meth}`.BaseCache.delete` to manually delete responses. See {ref}`manual_removal` for
+examples.
+
### Response URLs
You can use {py:meth}`.BaseCache.urls` to see all URLs currently in the cache:
```python