From 29b99c8da70324e955a77fee23d4a0cadece5cc1 Mon Sep 17 00:00:00 2001 From: "David W. Dougherty" Date: Wed, 5 Nov 2025 10:06:08 -0800 Subject: [PATCH 1/2] DOC-5924: update final bits and pieces for 8.4 release --- content/develop/reference/modules/modules-api-ref.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/develop/reference/modules/modules-api-ref.md b/content/develop/reference/modules/modules-api-ref.md index eeef91966c..d5ffcb0fcc 100644 --- a/content/develop/reference/modules/modules-api-ref.md +++ b/content/develop/reference/modules/modules-api-ref.md @@ -7991,6 +7991,7 @@ See [`RedisModule_ConfigSet`](#RedisModule_ConfigSet) for return value. Set the value of a numeric config. If the value passed is meant to be a percentage, it should be passed as a negative value. +For unsigned configs, pass the value and cast to (long long) - internal type checks will handle it. See [`RedisModule_ConfigSet`](#RedisModule_ConfigSet) for return value. From 6997274899a67575576ccb4e047ca6953447222d Mon Sep 17 00:00:00 2001 From: "David W. Dougherty" Date: Thu, 6 Nov 2025 08:53:14 -0800 Subject: [PATCH 2/2] update two commands per JSON files --- content/commands/tdigest.add.md | 2 +- content/commands/topk.add.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/content/commands/tdigest.add.md b/content/commands/tdigest.add.md index 24cca60a7b..2ef590fa61 100644 --- a/content/commands/tdigest.add.md +++ b/content/commands/tdigest.add.md @@ -22,7 +22,7 @@ categories: - oss - kubernetes - clients -complexity: O(N) , where N is the number of samples to add +complexity: O(N), where N is the number of samples to add description: Adds one or more observations to a t-digest sketch group: tdigest hidden: false diff --git a/content/commands/topk.add.md b/content/commands/topk.add.md index 7e45ec01d9..7e9d968cf8 100644 --- a/content/commands/topk.add.md +++ b/content/commands/topk.add.md @@ -20,14 +20,14 @@ categories: - kubernetes - clients complexity: O(n * k) where n is the number of items and k is the depth -description: Increases the count of one or more items by increment +description: Adds an item to a Top-k sketch. Multiple items can be added at the same time. group: topk hidden: false linkTitle: TOPK.ADD module: Bloom since: 2.0.0 stack_path: docs/data-types/probabilistic -summary: Increases the count of one or more items by increment +summary: Adds an item to a Top-k sketch. Multiple items can be added at the same time. syntax_fmt: TOPK.ADD key items [items ...] syntax_str: items [items ...] title: TOPK.ADD