Skip to content

Commit 43533a6

Browse files
authored
HybridCache GA: remove preview and not-implemented caveats (#34958)
* remove preview and not-implemented caveats * trailing quote
1 parent f0bec11 commit 43533a6

File tree

1 file changed

+2
-13
lines changed

1 file changed

+2
-13
lines changed

aspnetcore/performance/caching/hybrid.md

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,14 @@ uid: performance/caching/hybrid
99
---
1010
# HybridCache library in ASP.NET Core
1111

12-
> [!IMPORTANT]
13-
> `HybridCache` is currently still in preview but will be fully released *after* .NET 9.0 in a future minor release of .NET Extensions.
14-
15-
<!--
16-
[!INCLUDE[](~/includes/not-latest-version.md)]
17-
Uncomment this when 9.0 is the default value in the version selector.
18-
-->
19-
2012
This article explains how to configure and use the `HybridCache` library in an ASP.NET Core app. For an introduction to the library, see [the `HybridCache` section of the Caching overview](xref:performance/caching/overview#hybridcache).
2113

2214
## Get the library
2315

2416
Install the `Microsoft.Extensions.Caching.Hybrid` package.
2517

2618
```dotnetcli
27-
dotnet add package Microsoft.Extensions.Caching.Hybrid --version "9.0.0-preview.7.24406.2"
19+
dotnet add package Microsoft.Extensions.Caching.Hybrid
2820
```
2921

3022
## Register the service
@@ -117,9 +109,6 @@ When an entry is removed, it is removed from both the primary and secondary cach
117109

118110
## Remove cache entries by tag
119111

120-
> [!IMPORTANT]
121-
> This feature is still under development. If you try to remove entries by tag, you will notice that it doesn't have any effect.
122-
123112
Tags can be used to group cache entries and invalidate them together.
124113

125114
Set tags when calling `GetOrCreateAsync`, as shown in the following example:
@@ -230,7 +219,7 @@ dotnet add package Microsoft.Extensions.Caching.SqlServer
230219

231220
## Custom HybridCache implementations
232221

233-
A concrete implementation of the `HybridCache` abstract class is included in the shared framework and is provided via dependency injection. But developers are welcome to provide custom implementations of the API.
222+
A concrete implementation of the `HybridCache` abstract class is included in the shared framework and is provided via dependency injection. But developers are welcome to provide or consume custom implementations of the API, for example [FusionCache](https://github.com/ZiggyCreatures/FusionCache/blob/main/docs/MicrosoftHybridCache.md).
234223

235224
## Compatibility
236225

0 commit comments

Comments
 (0)