Skip to content

Commit 57a540f

Browse files
committed
DOC-4966 Update release to March 23rd.
1 parent 6ce5060 commit 57a540f

File tree

3 files changed

+34
-30
lines changed

3 files changed

+34
-30
lines changed

content/operate/rc/changelog/february-2025.md

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,4 @@ weight: 36
1616

1717
### Pico billing unit
1818

19-
We added a Pico billing unit for Pro databases with a maximum size of 100 MB and a maximum throughput of 100 ops/sec. Use it to create smaller databases for a lower cost.
20-
21-
### Redis hashing policy
22-
23-
Accounts created after February 23, 2025, can select the new [Redis hashing policy]({{< relref "/operate/rc/databases/configuration/clustering#redis-hashing-policy" >}}) for their databases when creating a new database.
24-
25-
The Redis hashing policy is identical to the [hashing policy used by Redis Community Edition]({{< relref "/operate/oss_and_stack/reference/cluster-spec#hash-tags" >}}). This policy is recommended for most users. Select it if any of the following conditions apply:
26-
- This is your first Redis Cloud account, and you are starting fresh.
27-
- You are migrating data from Redis Community Edition or other Redis-managed platforms.
28-
- Your application does not use hashtags in database key names.
29-
- Your application uses binary data as key names.
30-
31-
See [Clustering]({{< relref "/operate/rc/databases/configuration/clustering#manage-the-hashing-policy" >}}) for more information.
19+
We added a Pico billing unit for Pro databases with a maximum size of 100 MB and a maximum throughput of 100 ops/sec. Use it to create smaller databases for a lower cost.

content/operate/rc/changelog/march-2025.md

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ categories:
77
- rc
88
description: New features, enhancements, and other changes added to Redis Cloud during
99
March 2025.
10-
highlights: Redis Insight on Redis Cloud
10+
highlights: Redis Insight on Redis Cloud, Redis Hashing policy
1111
linktitle: March 2025
1212
weight: 34
1313
---
@@ -18,4 +18,20 @@ weight: 34
1818

1919
Users with select Redis Cloud Essentials databases can now open a browser-based version of [Redis Insight]({{< relref "/operate/rc/databases/connect/insight-cloud" >}}) directly from Redis Cloud. See [Connect to your database]({{< relref "/operate/rc/databases/connect#ri-browser" >}}) to learn how to open Redis Insight from Redis Cloud.
2020

21-
This browser-based version of Redis Insight has a subset of the features of Redis Insight on desktop. For more information, see [Open with Redis Insight on Redis Cloud]({{< relref "/operate/rc/databases/connect/insight-cloud" >}}).
21+
This browser-based version of Redis Insight has a subset of the features of Redis Insight on desktop. For more information, see [Open with Redis Insight on Redis Cloud]({{< relref "/operate/rc/databases/connect/insight-cloud" >}}).
22+
23+
### Redis hashing policy
24+
25+
Accounts created after March 23, 2025, can select the new [Redis hashing policy]({{< relref "/operate/rc/databases/configuration/clustering#redis-hashing-policy" >}}) for their databases when creating a new database.
26+
27+
The Redis hashing policy is identical to the [hashing policy used by Redis Community Edition]({{< relref "/operate/oss_and_stack/reference/cluster-spec#hash-tags" >}}). This policy is recommended for most users. Select it if any of the following conditions apply:
28+
- This is your first Redis Cloud account, and you are starting fresh.
29+
- You are migrating data from Redis Community Edition or other Redis-managed platforms.
30+
- Your application does not use hashtags in database key names.
31+
- Your application uses binary data as key names.
32+
33+
See [Clustering]({{< relref "/operate/rc/databases/configuration/clustering#manage-the-hashing-policy" >}}) for more information.
34+
35+
## Deprecations
36+
37+
- The [Custom hashing policy]({{< relref "/operate/rc/databases/configuration/clustering#custom-hashing-policy" >}}) is no longer available for accounts created after March 23, 2025. For all other accounts, this policy is not recommended and will be deprecated in the future. Only select a custom hashing policy if you are already using a custom hashing policy with your existing Redis Cloud databases.

content/operate/rc/databases/configuration/clustering.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -98,20 +98,7 @@ You can use the `{...}` pattern to direct related keys to the same hash slot, so
9898

9999
Redis Cloud offers 3 hashing policies, which differ in how hash tags are processed. These hashing policies are not always available.
100100

101-
For accounts created after February 23, 2025, Redis defaults to the [Redis hashing policy](#redis-hashing-policy) **when creating a new database**. For all other accounts, Redis defaults to the [standard hashing policy](#standard-hashing-policy).
102-
103-
{{< warning >}}
104-
You can change the hashing policy between Standard and Custom after you create your database. However, hashing policy changes delete existing data
105-
(FLUSHDB) before they're applied.
106-
107-
These changes include:
108-
109-
1. Changing the hashing policy, either from standard to custom or vice versa.
110-
1. Changing the order of custom hashing policy rules.
111-
1. Adding rules before existing ones in the custom hashing policy.
112-
1. Deleting rules from the custom hashing policy.
113-
1. Disabling clustering for the database.
114-
{{< /warning >}}
101+
For accounts created after March 23, 2025, Redis defaults to the [Redis hashing policy](#redis-hashing-policy) **when creating a new database**. For all other accounts, Redis defaults to the [standard hashing policy](#standard-hashing-policy).
115102

116103
### Redis hashing policy
117104

@@ -148,7 +135,7 @@ In some cases, the Standard hashing policy behaves differently from the Redis ha
148135
### Custom hashing policy
149136

150137
{{< note >}}
151-
The custom hashing policy is not available for accounts created after February 23, 2025.
138+
The custom hashing policy is not available for accounts created after March 23, 2025.
152139

153140
For all other accounts, this policy is not recommended and will be deprecated in the future. Select this option only if you are already using a custom hashing policy with your existing Redis Cloud databases.
154141
{{< /note >}}
@@ -177,6 +164,19 @@ default RegEx rules that implement the standard hashing policy are:
177164
You can modify existing rules, add new ones, delete rules, or change
178165
their order to suit your application's requirements.
179166

167+
{{< warning >}}
168+
If the Custom hashing policy is available, you can change the hashing policy between Standard and Custom after you create your database. However, hashing policy changes delete existing data
169+
(FLUSHDB) before they're applied.
170+
171+
These changes include:
172+
173+
1. Changing the hashing policy, either from standard to custom or vice versa.
174+
1. Changing the order of custom hashing policy rules.
175+
1. Adding rules before existing ones in the custom hashing policy.
176+
1. Deleting rules from the custom hashing policy.
177+
1. Disabling clustering for the database.
178+
{{< /warning >}}
179+
180180
### Custom hashing policy notes and limitations
181181

182182
1. You can define up to 32 RegEx rules, each up to 256 characters.

0 commit comments

Comments
 (0)