Skip to content

Commit afdd787

Browse files
committed
Merge branch 'main' into feat-ros-8.2
2 parents 12f3937 + fab0719 commit afdd787

File tree

12 files changed

+41
-17
lines changed

12 files changed

+41
-17
lines changed

content/develop/data-types/probabilistic/cuckoo-filter.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Note> In addition to these two cases, Cuckoo filters serve very well all the Blo
5050
> You'll learn how to create an empty cuckoo filter with an initial capacity for 1,000 items, add items, check their existence, and remove them. Even though the [`CF.ADD`]({{< relref "commands/cf.add/" >}}) command can create a new filter if one isn't present, it might not be optimally sized for your needs. It's better to use the [`CF.RESERVE`]({{< relref "commands/cf.reserve/" >}}) command to set up a filter with your preferred capacity.
5151
5252
{{< clients-example cuckoo_tutorial cuckoo >}}
53-
> CF.RESERVE bikes:models 1000000
53+
> CF.RESERVE bikes:models 1000
5454
OK
5555
> CF.ADD bikes:models "Smoky Mountain Striker"
5656
(integer) 1
@@ -115,18 +115,18 @@ When bucket size of 1 is used the fill rate is 55% and false positive error rate
115115

116116
### Choosing the scaling factor (`EXPANSION`)
117117

118-
When the filter self-declares itself full, it will auto-expand by generating additional sub-filters at the cost of reduced performance and increased error rate. The new sub-filter is created with size of the previous sub-filter multiplied by `EXPANSION` (chosen on filter creation). Like bucket size, additional sub-filters grow the error rate linearly (the compound error is a sum of all subfilters' errors). The size of the new sub-filter is the size of the last sub-filter multiplied by expansion and this is something very important to keep in mind. If you know you'll have to scale at some point it's better to choose a higher expansion value. The default is 1.
118+
When the filter self-declares itself full, it will auto-expand by generating additional sub-filters at the cost of reduced performance and increased error rate. The new sub-filter is created with size of the previous sub-filter multiplied by `EXPANSION` (chosen on filter creation). Like bucket size, additional sub-filters grow the error rate linearly (the compound error is a sum of all subfilters' errors). The size of the new sub-filter is the size of the last sub-filter multiplied by expansion and this is something very important to keep in mind. If you know you'll have to scale at some point it's better to choose a higher expansion value. The default is [`cf-expansion-factor`]({{< relref "develop/data-types/probabilistic/configuration/#cf-expansion-factor" >}}).
119119

120120
Maybe you're wondering "Why would I create a smaller filter with a high expansion rate if I know I'm going to scale anyway?"; the answer is: for cases where you need to keep many filters (let's say a filter per user, or per product) and most of them will stay small, but some with more activity will have to scale.
121121

122122
The expansion factor will be rounded up to the next "power of two (2<sup>n</sup>)" number.
123123

124124
### Choosing the maximum number of iterations (`MAXITERATIONS`)
125-
`MAXITERATIONS` dictates the number of attempts to find a slot for the incoming fingerprint. Once the filter gets full, a high MAXITERATIONS value will slow down insertions. The default value is 20.
125+
`MAXITERATIONS` dictates the number of attempts to find a slot for the incoming fingerprint. Once the filter gets full, a high MAXITERATIONS value will slow down insertions. The default value is [`cf-max-iterations`]({{< relref "develop/data-types/probabilistic/configuration/#cf-max-iterations" >}}).
126126

127127
### Interesting facts:
128128
- Unused capacity in prior sub-filters is automatically used when possible.
129-
- The filter can grow up to 32 times.
129+
- The filter can grow up to [`cf-max-expansions`]({{< relref "develop/data-types/probabilistic/configuration/#cf-max-expansions" >}}) times.
130130
- You can delete items to stay within filter limits instead of rebuilding
131131
- Adding the same element multiple times will create multiple entries, thus filling up your filter.
132132

content/develop/programmability/_index.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ categories:
99
- oss
1010
- kubernetes
1111
- clients
12-
- aliases: /develop/interact/programmability
12+
aliases:
13+
- /develop/interact/programmability
14+
- /develop/interact/programmability/
1315
description: 'Extending Redis with Lua and Redis Functions
1416
1517
'

content/develop/programmability/eval-intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ categories:
99
- oss
1010
- kubernetes
1111
- clients
12-
- aliases: /develop/interact/programmability/eval-intro
12+
aliases: /develop/interact/programmability/eval-intro
1313
description: 'Executing Lua in Redis
1414
1515
'

content/develop/programmability/functions-intro.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ categories:
99
- oss
1010
- kubernetes
1111
- clients
12-
- aliases: /develop/interact/programmability/functions-intro
12+
aliases:
13+
- /develop/interact/programmability/functions-intro
1314
description: 'Scripting with Redis 7 and beyond
1415
1516
'

content/develop/programmability/lua-api.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ categories:
99
- oss
1010
- kubernetes
1111
- clients
12-
- aliases: /develop/interact/programmability/lua-api
12+
aliases:
13+
- /develop/interact/programmability/lua-api
1314
description: 'Executing Lua in Redis
1415
1516
'

content/develop/programmability/lua-debugging.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ categories:
99
- oss
1010
- kubernetes
1111
- clients
12-
- aliases: /develop/interact/programmability/lua-debugging
12+
aliases:
13+
- /develop/interact/programmability/lua-debugging
1314
description: How to use the built-in Lua debugger
1415
linkTitle: Debugging Lua
1516
title: Debugging Lua scripts in Redis

content/develop/pubsub/_index.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ categories:
1212
description: How to use pub/sub channels in Redis
1313
linkTitle: Pub/sub
1414
title: Redis Pub/sub
15-
aliases: /develop/interact/pubsub
15+
aliases:
16+
- /develop/interact/pubsub
17+
- /develop/interact/pubsub/
1618
hideListLinks: true
1719
weight: 60
1820
---

content/develop/using-commands/_index.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,13 @@ categories:
1212
description: Learn how to interact with Redis using commands.
1313
linkTitle: Using commands
1414
title: Using Redis commands
15+
aliases:
16+
- /develop/interact/
17+
- /develop/interact
18+
- /develop/use/
19+
- /develop/use
20+
- /develop/use/pipelining/
21+
- /develop/use/pipelining
1522
weight: 33
1623
---
1724

content/develop/using-commands/transactions.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ categories:
99
- oss
1010
- kubernetes
1111
- clients
12-
- aliases: /develop/interact/transactions
12+
aliases:
13+
- /develop/interact/transactions
1314
description: How transactions work in Redis
1415
linkTitle: Transactions
1516
title: Transactions

content/operate/kubernetes/release-notes/7-22-0-releases/7-22-0-11-june2025.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,7 @@ This is a maintenance release to support [Redis Enterprise Software version 7.22
2020
- **Redis Enterprise**: `redislabs/redis:7.22.0-95`
2121
- **Operator**: `redislabs/operator:7.22.0-11`
2222
- **Services Rigger**: `redislabs/k8s-controller:7.22.0-11`
23-
24-
### OpenShift images
25-
26-
- **Redis Enterprise**: `registry.connect.redhat.com/redislabs/redis-enterprise:7.22.0-95`
27-
- **Operator**: `registry.connect.redhat.com/redislabs/redis-enterprise-operator:7.22.0-11`
28-
- **Services Rigger**: `registry.connect.redhat.com/redislabs/services-manager:7.22.0-11`
23+
- **Call Home Client**: `redislabs/re-call-home-client:7.22.0-11`
2924

3025
### OLM bundle
3126

0 commit comments

Comments
 (0)