Skip to content
/ docs Public
  • Sponsor
  • Notifications You must be signed in to change notification settings
  • Fork 397

Commit 9db23e0

Browse files
authoredNov 8, 2024
Undocument cache tagging (#1540)
1 parent 1df9277 commit 9db23e0

File tree

1 file changed

+0
-35
lines changed

1 file changed

+0
-35
lines changed
 

‎content/collections/tags/cache.md

-35
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@ parameters:
1212
name: key
1313
type: string
1414
description: 'The cache key to be used, if you''d like to manually invalidate this tag pair programmatically.'
15-
-
16-
name: tags
17-
type: string|array
18-
description: 'The [cache tags](https://laravel.com/docs/9.x/cache#cache-tags) this section will be using, if you''d like to invalidate this pair programmatically. If you use this, do not also use `key`.'
1915
-
2016
name: scope
2117
type: 'string'
@@ -166,37 +162,6 @@ class EventServiceProvider
166162
Invalidating by `key` won't work if you're using tags. In that case, you should invalidate by flushing the tag.
167163
:::
168164

169-
### Tag
170-
171-
By specifying `tags`, you can invalidate it programmatically. You must be using a cache driver that supports [tags](https://laravel.com/docs/8.x/cache#cache-tags), like Redis or Memcached.
172-
173-
::tabs
174-
175-
::tab antlers
176-
```antlers
177-
{{ cache tags="stocks|home" }} ... {{ /cache }}
178-
{{ cache tags="home" }} ... {{ /cache }}
179-
{{ cache tags="stocks" }} ... {{ /cache }}
180-
```
181-
::tab blade
182-
```blade
183-
<statamic:cache tags="stocks|home"> ... </statamic:cache>
184-
<statamic:cache tags="home"> ... </statamic:cache>
185-
<statamic:cache tags="stocks"> ... </statamic:cache>
186-
```
187-
::
188-
189-
Similar to invalidating by a key as explained above, you can flush all keys that use the tags.
190-
191-
```php
192-
Cache::tags('home')->flush(); // invalidates first and second pair
193-
Cache::tags('stocks')->flush(); // invalidates first and third pair
194-
```
195-
196-
:::warning
197-
Don't use the `key` and `tags` parameters together.
198-
:::
199-
200165
### Cache clear
201166

202167
The contents of your cache tags are stored in the application cache. Clear that, and you'll see fresh content next visit.

0 commit comments

Comments
 (0)
Please sign in to comment.