Skip to content

Commit 5a63467

Browse files
committed
Final review edits
1 parent 7f8591b commit 5a63467

File tree

1 file changed

+21
-30
lines changed

1 file changed

+21
-30
lines changed

articles/azure-cache-for-redis/cache-whats-new.md

Lines changed: 21 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -13,52 +13,43 @@ ms.date: 05/20/2024
1313

1414
# What's New in Azure Cache for Redis
1515

16-
## May 2024
17-
18-
### Azure Functions
16+
## June 2024
1917

20-
Using Azure Cache for Redis with Azure Functions to create optimized serverless and event-driven architectures is now in General Availability (GA).
18+
### .NET Output cache and HybridCache
2119

22-
For more information, see [Overview of Azure functions for Azure Cache for Redis](/azure/azure-functions/functions-bindings-cache).
20+
Using Azure Cache for Reds as output cache was introduced in .NET 8 in November 2023. Output Caching saves rendered web pages to improve performance, resilience, and reduce cost through server resource utilization. You can use Redis as a built-in output cache store in .NET 8. For more information on using Redis as an output cache, see [Output caching middleware in ASP.NET Core](/aspnet/core/performance/caching/output#redis-cache)
2321

24-
### Microsoft Entra ID
22+
ASP.NET Core's support for distributed caching is broadening _.NET 9 Preview 4_ for .NET 9 a new _HybridCache_ API. _HybridCache_ augments the existing `IDistributedCache` support in ASP.NET Core with new capabilities, including multi-tier storage, with a limited in-process L1 cache supplemented by a separate (usually larger) out-of-process L2 cache. The hybrid approach to cache storage provides you with two advantages: most fetches are served efficiently from L1, but cold-start and data you access infrequently use L2. Using L2 for data you access less frequently doesn't over-utilize the underlying backend.
2523

26-
Support Microsoft Entra ID for authentication and role-based access control across regions that support Azure Cache for Redis is now in General Availability (GA).
24+
For more information and downloading, see [.NET 9 Preview 4](https://dotnet.microsoft.com/en-us/download/dotnet/9.0)
2725

28-
For more information, see [Use Microsoft Entra ID for cache authentication](cache-azure-active-directory-for-authentication.md).
26+
_HybridCache_ also includes:
2927

30-
### .NET Output Cache and Hybrid Cache
31-
32-
<!-- If this came out in November 2023, shouldn't it be in that section? -->
33-
34-
Using Azure Cache for Reds as output cache was introduced in .NET 8 in November 2023. The Web Output Caching saves rendered web pages to improve performance, resilience, and reduce cost from server resource utilization. Redis has been implemented as built-in output cache store in .NET 8.
35-
36-
<!-- What is "Web Output Caching" referring to? -->
28+
- _stampede protection_ to prevent parallel fetches of the same data
29+
- configurable serialization
30+
- simplifying the API usage for common scenarios
3731

38-
For more information on using Redis as an output cache, see [Output caching middleware in ASP.NET Core](/aspnet/core/performance/caching/output#redis-cache)
32+
For more information, see the [HybridCache library](/aspnet/core/release-notes/aspnetcore-9.0#new-hybridcache-library).
3933

40-
ASP.NET Core's support for distributed caching is getting an upgrade with the new _HybridCache_ API. _HybridCache_ augments the existing `IDistributedCache` support in ASP.NET Core with new capabilities, including multi-tier storage, with a limited in-process (L1) cache supplemented by a separate (usually larger) out-of-process (L2) cache. The hybrid approach to cache storage provides you with two advantages, where most fetches are served efficiently from L1, but cold-start and data you access less frequently doesn't over utilize the underlying backend because hybrid uses L2 for that.
34+
### Connection Auditing
4135

42-
<!-- the phrase "less-frequently-accessed data still doesn't hammer the underlying backend" is too colloquial and doesn't translate well as an idiom -->
36+
Connection auditing is GA for all SKUs, and you can configure an Azure Policy to audit or enforce specific policies about private endpoints and public network access with your caches. Azure Cache for Redis doesn't provide a built-in policy, but you can author a custom policy to enforce that private endpoints are enabled.
4337

44-
<!-- is getting an upgrade? Is it happening now? Why are we talking about this feature if it isn't available? -->
38+
For more information, see [Manage network policies for private endpoints](/azure/private-link/disable-private-endpoint-network-policy).
4539

46-
HybridCache also includes:
40+
## May 2024
4741

48-
- _stampede protection_ to prevent parallel fetches of the same data
49-
- configurable serialization
50-
- simplifying the API usage for common scenarios
42+
### Azure Functions
5143

52-
For more information, see the [HybridCache library](/aspnet/core/release-notes/aspnetcore-9.0#new-hybridcache-library).
44+
Using Azure Cache for Redis with Azure Functions to create optimized serverless and event-driven architectures is now in General Availability (GA).
5345

54-
### Connection Auditing
46+
For more information, see [Overview of Azure functions for Azure Cache for Redis](/azure/azure-functions/functions-bindings-cache).
5547

56-
Connection auditing is GA for all SKUs.
57-
<!-- When did it GA? we can put it in the month where it GA'd. This isn't a Redis feature, right or do you mean are we announcing that user can configure this for Redis, what is the Redis connection-->
48+
### Microsoft Entra ID
5849

59-
You can configure an Azure Policy to audit or enforce specific policies about private endpoints and public network access. There isn't currently a built-in policy for doing this, but you can author a custom policy to enforce that private endpoints are enabled.
50+
Support Microsoft Entra ID for authentication and role-based access control across regions that support Azure Cache for Redis is now in General Availability (GA).
6051

61-
For more information, see [Manage network policies for private endpoints](/azure/private-link/disable-private-endpoint-network-policy).
52+
For more information, see [Use Microsoft Entra ID for cache authentication](cache-azure-active-directory-for-authentication.md).
6253

6354
## April 2024
6455

@@ -80,7 +71,7 @@ For more information, see [What are the configuration settings for the TLS proto
8071

8172
## October 2023
8273

83-
### Flush data operation for Basic, Standard and Premium Caches (preview)
74+
### Flush data operation for Basic, Standard, and Premium Caches (preview)
8475

8576
Basic, Standard, and Premium tier caches now support a built-in _flush_ operation that can be started at the control plane level. Use the _flush_ operation with your cache executing the `FLUSH ALL` command through Portal Console or _redis-cli_.
8677

0 commit comments

Comments
 (0)