Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions content/commands/info.md
Original file line number Diff line number Diff line change
Expand Up @@ -390,6 +390,7 @@ Here is the meaning of all fields in the **stats** section:
* `acl_access_denied_cmd`: Number of commands rejected because of access denied to the command
* `acl_access_denied_key`: Number of commands rejected because of access denied to a key
* `acl_access_denied_channel`: Number of commands rejected because of access denied to a channel
* `acl_access_denied_tls_cert`: Number of failed TLS certificate–based authentication attempts
* `cluster_incompatible_ops`: Number of cluster-incompatible commands. This metric appears only if the `cluster-compatibility-sample-ratio` configuration parameter is not 0. Added in Redis 8.0.


Expand Down
8 changes: 4 additions & 4 deletions content/operate/oss_and_stack/install/install-stack/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ title: Install Redis Open Source
weight: 2
---

Redis Open Source has been tested on the following platforms:
The latest version of Redis Open Source has been tested on the following platforms:

- Ubuntu 22.04 (Jammy Jellyfish) and 24.04 (Noble Numbat).
- Rocky Linux 8.10 and 9.5.
- AlmaLinux 8.10 and 9.5.
- Rocky Linux 8.10, 9.5, and 10.1.
- AlmaLinux 8.10, 9.5, and 10.1.
- Debian 12 (Bookworm) and 13 (Trixie).
- macOS 13 (Ventura), 14 (Sonoma), and 15 (Sequoia).
- macOS 14 (Sonoma), and 15 (Sequoia).

Follow the links below for installation instructions for your OS and distribution.

Expand Down
1 change: 1 addition & 0 deletions content/operate/oss_and_stack/management/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ backslashed hexadecimal notation "\\xff".

The list of configuration directives, along with comments describing their meaning and intended usage, is available in the self-documented sample files `redis.conf` and `redis-full.conf` files shipped with the Redis distributions.

* Configuration files for Redis 8.6: [redis-full.conf](https://raw.githubusercontent.com/redis/redis/8.6/redis-full.conf) and [redis.conf](https://raw.githubusercontent.com/redis/redis/8.6/redis.conf).
* Configuration files for Redis 8.4: [redis-full.conf](https://raw.githubusercontent.com/redis/redis/8.4/redis-full.conf) and [redis.conf](https://raw.githubusercontent.com/redis/redis/8.4/redis.conf).
* Configuration files for Redis 8.2: [redis-full.conf](https://raw.githubusercontent.com/redis/redis/8.2/redis-full.conf) and [redis.conf](https://raw.githubusercontent.com/redis/redis/8.2/redis.conf).
* Configuration files for Redis 8.0: [redis-full.conf](https://raw.githubusercontent.com/redis/redis/8.0/redis-full.conf) and [redis.conf](https://raw.githubusercontent.com/redis/redis/8.0/redis.conf).
Expand Down
20 changes: 10 additions & 10 deletions data/commands_redisbloom.json
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@
"group": "cms"
},
"TOPK.RESERVE": {
"summary": "Initializes a TopK with specified parameters",
"summary": "Initializes a Top-K sketch with specified parameters",
"complexity": "O(1)",
"arguments": [
{
Expand Down Expand Up @@ -658,7 +658,7 @@
"group": "topk"
},
"TOPK.ADD": {
"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.",
"complexity": "O(n * k) where n is the number of items and k is the depth",
"arguments": [
{
Expand Down Expand Up @@ -737,8 +737,8 @@
"group": "topk"
},
"TOPK.LIST": {
"summary": "Return full list of items in Top K list",
"complexity": "O(k) where k is the value of top-k",
"summary": "Return the full list of items in Top-K sketch.",
"complexity": "O(k*log(k)) where k is the value of top-k",
"arguments": [
{
"name": "key",
Expand Down Expand Up @@ -798,7 +798,7 @@
},
"TDIGEST.ADD": {
"summary": "Adds one or more observations to a t-digest sketch",
"complexity": "O(N) , where N is the number of samples to add",
"complexity": "O(N), where N is the number of samples to add",
"arguments": [
{
"name": "key",
Expand Down Expand Up @@ -889,7 +889,7 @@
},
"TDIGEST.QUANTILE": {
"summary": "Returns, for each input fraction, an estimation of the value (floating point) that is smaller than the given fraction of observations",
"complexity": "O(1)",
"complexity": "O(N) where N is the number of quantiles specified.",
"arguments": [
{
"name": "key",
Expand Down Expand Up @@ -943,7 +943,7 @@
},
"TDIGEST.RANK": {
"summary": "Returns, for each input value (floating-point), the estimated rank of the value (the number of observations in the sketch that are smaller than the value + half the number of observations that are equal to the value)",
"complexity": "O(1)",
"complexity": "O(N) where N is the number of values specified.",
"arguments": [
{
"name": "key",
Expand All @@ -960,7 +960,7 @@
},
"TDIGEST.REVRANK": {
"summary": "Returns, for each input value (floating-point), the estimated reverse rank of the value (the number of observations in the sketch that are larger than the value + half the number of observations that are equal to the value)",
"complexity": "O(1)",
"complexity": "O(N) where N is the number of values specified.",
"arguments": [
{
"name": "key",
Expand All @@ -977,7 +977,7 @@
},
"TDIGEST.BYRANK": {
"summary": "Returns, for each input rank, an estimation of the value (floating-point) with that rank",
"complexity": "O(1)",
"complexity": "O(N) where N is the number of ranks specified",
"arguments": [
{
"name": "key",
Expand All @@ -994,7 +994,7 @@
},
"TDIGEST.BYREVRANK": {
"summary": "Returns, for each input reverse rank, an estimation of the value (floating-point) with that reverse rank",
"complexity": "O(1)",
"complexity": "O(N) where N is the number of reverse ranks specified.",
"arguments": [
{
"name": "key",
Expand Down
Loading