Skip to content

Commit 88a25c7

Browse files
authored
DOC-5924: update final bits and pieces for 8.4 release (#2353)
* DOC-5924: update final bits and pieces for 8.4 release * update two commands per JSON files
1 parent d61626f commit 88a25c7

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

content/commands/tdigest.add.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ categories:
2222
- oss
2323
- kubernetes
2424
- clients
25-
complexity: O(N) , where N is the number of samples to add
25+
complexity: O(N), where N is the number of samples to add
2626
description: Adds one or more observations to a t-digest sketch
2727
group: tdigest
2828
hidden: false

content/commands/topk.add.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ categories:
2020
- kubernetes
2121
- clients
2222
complexity: O(n * k) where n is the number of items and k is the depth
23-
description: Increases the count of one or more items by increment
23+
description: Adds an item to a Top-k sketch. Multiple items can be added at the same time.
2424
group: topk
2525
hidden: false
2626
linkTitle: TOPK.ADD
2727
module: Bloom
2828
since: 2.0.0
2929
stack_path: docs/data-types/probabilistic
30-
summary: Increases the count of one or more items by increment
30+
summary: Adds an item to a Top-k sketch. Multiple items can be added at the same time.
3131
syntax_fmt: TOPK.ADD key items [items ...]
3232
syntax_str: items [items ...]
3333
title: TOPK.ADD

content/develop/reference/modules/modules-api-ref.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7991,6 +7991,7 @@ See [`RedisModule_ConfigSet`](#RedisModule_ConfigSet) for return value.
79917991
Set the value of a numeric config.
79927992
If the value passed is meant to be a percentage, it should be passed as a
79937993
negative value.
7994+
For unsigned configs, pass the value and cast to (long long) - internal type checks will handle it.
79947995

79957996
See [`RedisModule_ConfigSet`](#RedisModule_ConfigSet) for return value.
79967997

0 commit comments

Comments
 (0)