We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2142008 + 95df939 commit bb3ff1dCopy full SHA for bb3ff1d
doc/invalidation-handlers.rst
@@ -67,12 +67,17 @@ Assume you sent four responses:
67
68
You can now invalidate some URLs using tags::
69
70
- $tagHandler->invalidateTags(array('group-a', 'tag-four'))->flush();
+ $tagHandler->invalidateTags(array('group-a', 'tag-four'));
71
72
This will ban all requests having either the tag ``group-a`` /or/ ``tag-four``.
73
In the above example, this will invalidate ``/two``, ``/three`` and ``/four``.
74
Only ``/one`` will stay in the cache.
75
76
+.. note::
77
+
78
+ Don't forget to :ref:`flush <flush>` these invalidation changes to the proxy
79
+ from the ``CacheInvalidator`` object towards the end of your application.
80
81
.. _custom_tags_header:
82
83
Custom Tags Header
0 commit comments