diff --git a/docs/topics/cache.txt b/docs/topics/cache.txt
index 174dbae..9f0b55b 100644
|
a
|
b
|
actually exist in the cache (and haven't expired)::
|
| 510 | 510 | >>> cache.get_many(['a', 'b', 'c']) |
| 511 | 511 | {'a': 1, 'b': 2, 'c': 3} |
| 512 | 512 | |
| 513 | | Finally, you can delete keys explicitly with ``delete()``. This is an easy way |
| | 513 | You can delete keys explicitly with ``delete()``. This is an easy way |
| 514 | 514 | of clearing the cache for a particular object:: |
| 515 | 515 | |
| 516 | 516 | >>> cache.delete('a') |
| 517 | 517 | |
| | 518 | Finally, if you need to remove everything in the cache you can use |
| | 519 | the``flush()`` method:: |
| | 520 | |
| | 521 | >>> cache.flush() |
| | 522 | |
| 518 | 523 | .. versionadded:: 1.1 |
| 519 | 524 | |
| 520 | 525 | You can also increment or decrement a key that already exists using the |