Skip to content

Commit 8f07c51

Browse files
mgravelltdykstra
andauthored
Update aspnetcore/performance/caching/hybrid.md
Co-authored-by: Tom Dykstra <tdykstra@microsoft.com>
1 parent 8753bfd commit 8f07c51

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

aspnetcore/performance/caching/hybrid.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,7 @@ Neither `IMemoryCache` nor `IDistributedCache` has direct support for the concep
132132

133133
## Removing all cache entries
134134

135-
The tag `*` is reserved as a wildcard and is disallowed against individual values. Calling `RemoveByTagAsync("*")` has the effect of invalidating *all* `HybridCache` data, even data that does not have any tags. As with individual tags, this is a *logical* operation, and individual values may continue to exist until they expire naturally. Glob-style matches are not supported (you cannot use `RemoveByTagAsync("foo*)` to remove everything
136-
starting with `"foo"`).
135+
The asterisk tag (`*`) is reserved as a wildcard and is disallowed against individual values. Calling `RemoveByTagAsync("*")` has the effect of invalidating *all* `HybridCache` data, even data that does not have any tags. As with individual tags, this is a *logical* operation, and individual values continue to exist until they expire naturally. Glob-style matches are not supported. For example, you can't use `RemoveByTagAsync("foo*")` to remove everything starting with `foo`.
137136

138137
### Additional tag considerations
139138

0 commit comments

Comments
 (0)