From fe0827a2b83d0a0c3ce743d6da83d6dfa30137ca Mon Sep 17 00:00:00 2001 From: Andy Stark Date: Fri, 14 Nov 2025 11:51:26 +0000 Subject: [PATCH 1/7] DOC-5945 first attempt at some AI metadata --- layouts/_default/baseof.html | 4 +++- layouts/_default/section.md | 9 +++++++++ layouts/_default/single.md | 9 +++++++++ layouts/partials/ai-metadata.html | 4 ++++ 4 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 layouts/partials/ai-metadata.html diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 45b5319792..9bc34cace2 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -36,7 +36,9 @@ {{ partialCached "css.html" . }} {{ block "head" . }}{{ end }} - + + {{ partial "ai-metadata.html" . }} + {{ partial "fonts.html" . }} {{ if hugo.IsProduction -}} diff --git a/layouts/_default/section.md b/layouts/_default/section.md index 8bb56db5e0..113c116a7a 100644 --- a/layouts/_default/section.md +++ b/layouts/_default/section.md @@ -1,4 +1,13 @@ # {{ .Title }} + +```json +{ + "title": "{{ .Title }}", + "description": "{{ .Description }}", + "categories": {{ .Params.categories | jsonify }} +} +``` + {{ $content := .RawContent }} {{/* Fix relrefs */}} diff --git a/layouts/_default/single.md b/layouts/_default/single.md index 8bb56db5e0..113c116a7a 100644 --- a/layouts/_default/single.md +++ b/layouts/_default/single.md @@ -1,4 +1,13 @@ # {{ .Title }} + +```json +{ + "title": "{{ .Title }}", + "description": "{{ .Description }}", + "categories": {{ .Params.categories | jsonify }} +} +``` + {{ $content := .RawContent }} {{/* Fix relrefs */}} diff --git a/layouts/partials/ai-metadata.html b/layouts/partials/ai-metadata.html new file mode 100644 index 0000000000..cf95aa2709 --- /dev/null +++ b/layouts/partials/ai-metadata.html @@ -0,0 +1,4 @@ +{{- /* Generate AI-friendly metadata as JSON in a script tag */ -}} +{{- $json := dict "title" .Title "description" .Description "categories" .Params.categories | jsonify -}} +{{- printf `` $json | safeHTML -}} + From 066585c78f2b9e0d7fc37aa63d8cac7defe9661a Mon Sep 17 00:00:00 2001 From: Andy Stark Date: Fri, 14 Nov 2025 13:09:37 +0000 Subject: [PATCH 2/7] DOC-5945 added body metadata backup --- layouts/_default/baseof.html | 2 ++ layouts/_default/section.md | 2 +- layouts/_default/single.md | 2 +- layouts/partials/ai-metadata-body.html | 4 ++++ layouts/partials/ai-metadata.html | 2 +- 5 files changed, 9 insertions(+), 3 deletions(-) create mode 100644 layouts/partials/ai-metadata-body.html diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 9bc34cace2..32ff961bf3 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -58,6 +58,8 @@ {{ end }} + {{ partial "ai-metadata-body.html" . }} + {{ if hugo.IsProduction -}} diff --git a/layouts/_default/section.md b/layouts/_default/section.md index 113c116a7a..4a0a662205 100644 --- a/layouts/_default/section.md +++ b/layouts/_default/section.md @@ -1,6 +1,6 @@ # {{ .Title }} -```json +```json metadata { "title": "{{ .Title }}", "description": "{{ .Description }}", diff --git a/layouts/_default/single.md b/layouts/_default/single.md index 113c116a7a..4a0a662205 100644 --- a/layouts/_default/single.md +++ b/layouts/_default/single.md @@ -1,6 +1,6 @@ # {{ .Title }} -```json +```json metadata { "title": "{{ .Title }}", "description": "{{ .Description }}", diff --git a/layouts/partials/ai-metadata-body.html b/layouts/partials/ai-metadata-body.html new file mode 100644 index 0000000000..3aa61f02a3 --- /dev/null +++ b/layouts/partials/ai-metadata-body.html @@ -0,0 +1,4 @@ +{{- /* Generate AI-friendly metadata as a hidden div in the page body */ -}} +{{- $json := dict "title" .Title "description" .Description "categories" .Params.categories | jsonify -}} +{{- printf `` ($json | htmlEscape) | safeHTML -}} + diff --git a/layouts/partials/ai-metadata.html b/layouts/partials/ai-metadata.html index cf95aa2709..4a3e95d78f 100644 --- a/layouts/partials/ai-metadata.html +++ b/layouts/partials/ai-metadata.html @@ -1,4 +1,4 @@ -{{- /* Generate AI-friendly metadata as JSON in a script tag */ -}} +{{- /* Generate AI-friendly metadata as JSON in a script tag for the header */ -}} {{- $json := dict "title" .Title "description" .Description "categories" .Params.categories | jsonify -}} {{- printf `` $json | safeHTML -}} From 60824304cdc1628281b1d484052f936b25b4f9f7 Mon Sep 17 00:00:00 2001 From: Andy Stark Date: Fri, 14 Nov 2025 13:31:00 +0000 Subject: [PATCH 3/7] DOC-5945 moved JSON content to body of element --- layouts/partials/ai-metadata-body.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/partials/ai-metadata-body.html b/layouts/partials/ai-metadata-body.html index 3aa61f02a3..d87fcfc4e8 100644 --- a/layouts/partials/ai-metadata-body.html +++ b/layouts/partials/ai-metadata-body.html @@ -1,4 +1,4 @@ {{- /* Generate AI-friendly metadata as a hidden div in the page body */ -}} {{- $json := dict "title" .Title "description" .Description "categories" .Params.categories | jsonify -}} -{{- printf `` ($json | htmlEscape) | safeHTML -}} +{{- printf `` $json | safeHTML -}} From 3f077b614b4ef497e61d650fa282ac6592072415 Mon Sep 17 00:00:00 2001 From: Andy Stark Date: Fri, 14 Nov 2025 14:12:33 +0000 Subject: [PATCH 4/7] DOC-5945 try adding command metadata --- layouts/_default/section.md | 7 ++++++- layouts/_default/single.md | 7 ++++++- layouts/partials/ai-metadata-body.html | 18 +++++++++++++++++- layouts/partials/ai-metadata.html | 18 +++++++++++++++++- 4 files changed, 46 insertions(+), 4 deletions(-) diff --git a/layouts/_default/section.md b/layouts/_default/section.md index 4a0a662205..49b6409b60 100644 --- a/layouts/_default/section.md +++ b/layouts/_default/section.md @@ -4,7 +4,12 @@ { "title": "{{ .Title }}", "description": "{{ .Description }}", - "categories": {{ .Params.categories | jsonify }} + "categories": {{ .Params.categories | jsonify }}{{ if .Params.arguments }}, + "arguments": {{ .Params.arguments | jsonify }}{{ end }}{{ if .Params.syntax_fmt }}, + "syntax_fmt": {{ .Params.syntax_fmt | jsonify }}{{ end }}{{ if .Params.complexity }}, + "complexity": {{ .Params.complexity | jsonify }}{{ end }}{{ if .Params.group }}, + "group": {{ .Params.group | jsonify }}{{ end }}{{ if .Params.command_flags }}, + "command_flags": {{ .Params.command_flags | jsonify }}{{ end }} } ``` diff --git a/layouts/_default/single.md b/layouts/_default/single.md index 4a0a662205..49b6409b60 100644 --- a/layouts/_default/single.md +++ b/layouts/_default/single.md @@ -4,7 +4,12 @@ { "title": "{{ .Title }}", "description": "{{ .Description }}", - "categories": {{ .Params.categories | jsonify }} + "categories": {{ .Params.categories | jsonify }}{{ if .Params.arguments }}, + "arguments": {{ .Params.arguments | jsonify }}{{ end }}{{ if .Params.syntax_fmt }}, + "syntax_fmt": {{ .Params.syntax_fmt | jsonify }}{{ end }}{{ if .Params.complexity }}, + "complexity": {{ .Params.complexity | jsonify }}{{ end }}{{ if .Params.group }}, + "group": {{ .Params.group | jsonify }}{{ end }}{{ if .Params.command_flags }}, + "command_flags": {{ .Params.command_flags | jsonify }}{{ end }} } ``` diff --git a/layouts/partials/ai-metadata-body.html b/layouts/partials/ai-metadata-body.html index d87fcfc4e8..0ef2bcbaad 100644 --- a/layouts/partials/ai-metadata-body.html +++ b/layouts/partials/ai-metadata-body.html @@ -1,4 +1,20 @@ {{- /* Generate AI-friendly metadata as a hidden div in the page body */ -}} -{{- $json := dict "title" .Title "description" .Description "categories" .Params.categories | jsonify -}} +{{- $metadata := dict "title" .Title "description" .Description "categories" .Params.categories -}} +{{- if .Params.arguments -}} + {{- $metadata = merge $metadata (dict "arguments" .Params.arguments) -}} +{{- end -}} +{{- if .Params.syntax_fmt -}} + {{- $metadata = merge $metadata (dict "syntax_fmt" .Params.syntax_fmt) -}} +{{- end -}} +{{- if .Params.complexity -}} + {{- $metadata = merge $metadata (dict "complexity" .Params.complexity) -}} +{{- end -}} +{{- if .Params.group -}} + {{- $metadata = merge $metadata (dict "group" .Params.group) -}} +{{- end -}} +{{- if .Params.command_flags -}} + {{- $metadata = merge $metadata (dict "command_flags" .Params.command_flags) -}} +{{- end -}} +{{- $json := $metadata | jsonify -}} {{- printf `` $json | safeHTML -}} diff --git a/layouts/partials/ai-metadata.html b/layouts/partials/ai-metadata.html index 4a3e95d78f..0614d4ce0d 100644 --- a/layouts/partials/ai-metadata.html +++ b/layouts/partials/ai-metadata.html @@ -1,4 +1,20 @@ {{- /* Generate AI-friendly metadata as JSON in a script tag for the header */ -}} -{{- $json := dict "title" .Title "description" .Description "categories" .Params.categories | jsonify -}} +{{- $metadata := dict "title" .Title "description" .Description "categories" .Params.categories -}} +{{- if .Params.arguments -}} + {{- $metadata = merge $metadata (dict "arguments" .Params.arguments) -}} +{{- end -}} +{{- if .Params.syntax_fmt -}} + {{- $metadata = merge $metadata (dict "syntax_fmt" .Params.syntax_fmt) -}} +{{- end -}} +{{- if .Params.complexity -}} + {{- $metadata = merge $metadata (dict "complexity" .Params.complexity) -}} +{{- end -}} +{{- if .Params.group -}} + {{- $metadata = merge $metadata (dict "group" .Params.group) -}} +{{- end -}} +{{- if .Params.command_flags -}} + {{- $metadata = merge $metadata (dict "command_flags" .Params.command_flags) -}} +{{- end -}} +{{- $json := $metadata | jsonify -}} {{- printf `` $json | safeHTML -}} From 1060cfa7bdecc3ae2720fd52f78ad2d9e7c616cc Mon Sep 17 00:00:00 2001 From: Andy Stark Date: Fri, 14 Nov 2025 14:40:30 +0000 Subject: [PATCH 5/7] DOC-5945 add expanded metadata fields (acl_categories, since, arity, key_specs) --- layouts/_default/section.md | 6 +++++- layouts/_default/single.md | 6 +++++- layouts/partials/ai-metadata-body.html | 12 ++++++++++++ layouts/partials/ai-metadata.html | 12 ++++++++++++ 4 files changed, 34 insertions(+), 2 deletions(-) diff --git a/layouts/_default/section.md b/layouts/_default/section.md index 49b6409b60..a09cb10aeb 100644 --- a/layouts/_default/section.md +++ b/layouts/_default/section.md @@ -9,7 +9,11 @@ "syntax_fmt": {{ .Params.syntax_fmt | jsonify }}{{ end }}{{ if .Params.complexity }}, "complexity": {{ .Params.complexity | jsonify }}{{ end }}{{ if .Params.group }}, "group": {{ .Params.group | jsonify }}{{ end }}{{ if .Params.command_flags }}, - "command_flags": {{ .Params.command_flags | jsonify }}{{ end }} + "command_flags": {{ .Params.command_flags | jsonify }}{{ end }}{{ if .Params.acl_categories }}, + "acl_categories": {{ .Params.acl_categories | jsonify }}{{ end }}{{ if .Params.since }}, + "since": {{ .Params.since | jsonify }}{{ end }}{{ if .Params.arity }}, + "arity": {{ .Params.arity | jsonify }}{{ end }}{{ if .Params.key_specs }}, + "key_specs": {{ .Params.key_specs | jsonify }}{{ end }} } ``` diff --git a/layouts/_default/single.md b/layouts/_default/single.md index 49b6409b60..a09cb10aeb 100644 --- a/layouts/_default/single.md +++ b/layouts/_default/single.md @@ -9,7 +9,11 @@ "syntax_fmt": {{ .Params.syntax_fmt | jsonify }}{{ end }}{{ if .Params.complexity }}, "complexity": {{ .Params.complexity | jsonify }}{{ end }}{{ if .Params.group }}, "group": {{ .Params.group | jsonify }}{{ end }}{{ if .Params.command_flags }}, - "command_flags": {{ .Params.command_flags | jsonify }}{{ end }} + "command_flags": {{ .Params.command_flags | jsonify }}{{ end }}{{ if .Params.acl_categories }}, + "acl_categories": {{ .Params.acl_categories | jsonify }}{{ end }}{{ if .Params.since }}, + "since": {{ .Params.since | jsonify }}{{ end }}{{ if .Params.arity }}, + "arity": {{ .Params.arity | jsonify }}{{ end }}{{ if .Params.key_specs }}, + "key_specs": {{ .Params.key_specs | jsonify }}{{ end }} } ``` diff --git a/layouts/partials/ai-metadata-body.html b/layouts/partials/ai-metadata-body.html index 0ef2bcbaad..c3f292adee 100644 --- a/layouts/partials/ai-metadata-body.html +++ b/layouts/partials/ai-metadata-body.html @@ -15,6 +15,18 @@ {{- if .Params.command_flags -}} {{- $metadata = merge $metadata (dict "command_flags" .Params.command_flags) -}} {{- end -}} +{{- if .Params.acl_categories -}} + {{- $metadata = merge $metadata (dict "acl_categories" .Params.acl_categories) -}} +{{- end -}} +{{- if .Params.since -}} + {{- $metadata = merge $metadata (dict "since" .Params.since) -}} +{{- end -}} +{{- if .Params.arity -}} + {{- $metadata = merge $metadata (dict "arity" .Params.arity) -}} +{{- end -}} +{{- if .Params.key_specs -}} + {{- $metadata = merge $metadata (dict "key_specs" .Params.key_specs) -}} +{{- end -}} {{- $json := $metadata | jsonify -}} {{- printf `` $json | safeHTML -}} diff --git a/layouts/partials/ai-metadata.html b/layouts/partials/ai-metadata.html index 0614d4ce0d..d184e59f7a 100644 --- a/layouts/partials/ai-metadata.html +++ b/layouts/partials/ai-metadata.html @@ -15,6 +15,18 @@ {{- if .Params.command_flags -}} {{- $metadata = merge $metadata (dict "command_flags" .Params.command_flags) -}} {{- end -}} +{{- if .Params.acl_categories -}} + {{- $metadata = merge $metadata (dict "acl_categories" .Params.acl_categories) -}} +{{- end -}} +{{- if .Params.since -}} + {{- $metadata = merge $metadata (dict "since" .Params.since) -}} +{{- end -}} +{{- if .Params.arity -}} + {{- $metadata = merge $metadata (dict "arity" .Params.arity) -}} +{{- end -}} +{{- if .Params.key_specs -}} + {{- $metadata = merge $metadata (dict "key_specs" .Params.key_specs) -}} +{{- end -}} {{- $json := $metadata | jsonify -}} {{- printf `` $json | safeHTML -}} From e52e3370ee35e579826d596f739f99586b1c1736 Mon Sep 17 00:00:00 2001 From: Andy Stark Date: Fri, 14 Nov 2025 14:52:10 +0000 Subject: [PATCH 6/7] DOC-5945 remove duplicate 'oss' categories from all command files (517 files) --- content/commands/acl-cat.md | 1 - content/commands/acl-deluser.md | 1 - content/commands/acl-dryrun.md | 1 - content/commands/acl-genpass.md | 1 - content/commands/acl-getuser.md | 1 - content/commands/acl-help.md | 1 - content/commands/acl-list.md | 1 - content/commands/acl-load.md | 1 - content/commands/acl-log.md | 1 - content/commands/acl-save.md | 1 - content/commands/acl-setuser.md | 1 - content/commands/acl-users.md | 1 - content/commands/acl-whoami.md | 1 - content/commands/acl.md | 1 - content/commands/append.md | 1 - content/commands/asking.md | 1 - content/commands/auth.md | 1 - content/commands/bf.add.md | 1 - content/commands/bf.card.md | 1 - content/commands/bf.exists.md | 1 - content/commands/bf.info.md | 1 - content/commands/bf.insert.md | 7 +- content/commands/bf.loadchunk.md | 1 - content/commands/bf.madd.md | 1 - content/commands/bf.mexists.md | 1 - content/commands/bf.reserve.md | 4 +- content/commands/bf.scandump.md | 1 - content/commands/bgrewriteaof.md | 1 - content/commands/bgsave.md | 1 - content/commands/bitcount.md | 1 - content/commands/bitfield.md | 13 +-- content/commands/bitfield_ro.md | 1 - content/commands/bitop.md | 4 +- content/commands/bitpos.md | 1 - content/commands/blmove.md | 1 - content/commands/blmpop.md | 1 - content/commands/blpop.md | 1 - content/commands/brpop.md | 1 - content/commands/brpoplpush.md | 1 - content/commands/bzmpop.md | 1 - content/commands/bzpopmax.md | 1 - content/commands/bzpopmin.md | 1 - content/commands/cf.add.md | 1 - content/commands/cf.addnx.md | 1 - content/commands/cf.count.md | 1 - content/commands/cf.del.md | 1 - content/commands/cf.exists.md | 1 - content/commands/cf.info.md | 1 - content/commands/cf.insert.md | 1 - content/commands/cf.insertnx.md | 1 - content/commands/cf.loadchunk.md | 1 - content/commands/cf.mexists.md | 1 - content/commands/cf.reserve.md | 4 +- content/commands/cf.scandump.md | 1 - content/commands/client-caching.md | 1 - content/commands/client-getname.md | 1 - content/commands/client-getredir.md | 1 - content/commands/client-help.md | 1 - content/commands/client-id.md | 1 - content/commands/client-info.md | 1 - content/commands/client-kill.md | 16 ++-- content/commands/client-list.md | 4 +- content/commands/client-no-evict.md | 1 - content/commands/client-no-touch.md | 1 - content/commands/client-pause.md | 1 - content/commands/client-reply.md | 1 - content/commands/client-setinfo.md | 1 - content/commands/client-setname.md | 1 - content/commands/client-tracking.md | 4 +- content/commands/client-trackinginfo.md | 1 - content/commands/client-unblock.md | 1 - content/commands/client-unpause.md | 1 - content/commands/client.md | 1 - content/commands/cluster-addslots.md | 1 - content/commands/cluster-addslotsrange.md | 1 - content/commands/cluster-bumpepoch.md | 1 - .../commands/cluster-count-failure-reports.md | 1 - content/commands/cluster-countkeysinslot.md | 1 - content/commands/cluster-delslots.md | 1 - content/commands/cluster-delslotsrange.md | 1 - content/commands/cluster-failover.md | 1 - content/commands/cluster-flushslots.md | 1 - content/commands/cluster-forget.md | 1 - content/commands/cluster-getkeysinslot.md | 1 - content/commands/cluster-help.md | 1 - content/commands/cluster-info.md | 1 - content/commands/cluster-keyslot.md | 1 - content/commands/cluster-links.md | 1 - content/commands/cluster-meet.md | 1 - content/commands/cluster-myid.md | 1 - content/commands/cluster-myshardid.md | 1 - content/commands/cluster-nodes.md | 1 - content/commands/cluster-replicas.md | 1 - content/commands/cluster-replicate.md | 1 - content/commands/cluster-reset.md | 1 - content/commands/cluster-saveconfig.md | 1 - content/commands/cluster-set-config-epoch.md | 1 - content/commands/cluster-setslot.md | 4 +- content/commands/cluster-shards.md | 1 - content/commands/cluster-slaves.md | 1 - content/commands/cluster-slot-stats.md | 6 +- content/commands/cluster-slots.md | 1 - content/commands/cluster.md | 1 - content/commands/cms.incrby.md | 1 - content/commands/cms.info.md | 1 - content/commands/cms.initbydim.md | 1 - content/commands/cms.initbyprob.md | 1 - content/commands/cms.merge.md | 4 +- content/commands/cms.query.md | 1 - content/commands/command-count.md | 1 - content/commands/command-docs.md | 1 - content/commands/command-getkeys.md | 1 - content/commands/command-getkeysandflags.md | 1 - content/commands/command-help.md | 1 - content/commands/command-info.md | 1 - content/commands/command-list.md | 4 +- content/commands/command.md | 1 - content/commands/config-get.md | 1 - content/commands/config-help.md | 1 - content/commands/config-resetstat.md | 1 - content/commands/config-rewrite.md | 1 - content/commands/config-set.md | 1 - content/commands/config.md | 1 - content/commands/copy.md | 1 - content/commands/dbsize.md | 1 - content/commands/debug.md | 1 - content/commands/decr.md | 1 - content/commands/decrby.md | 1 - content/commands/del.md | 1 - content/commands/discard.md | 1 - content/commands/dump.md | 1 - content/commands/echo.md | 1 - content/commands/eval.md | 1 - content/commands/eval_ro.md | 1 - content/commands/evalsha.md | 1 - content/commands/evalsha_ro.md | 1 - content/commands/exec.md | 1 - content/commands/exists.md | 1 - content/commands/expire.md | 1 - content/commands/expireat.md | 1 - content/commands/expiretime.md | 1 - content/commands/failover.md | 1 - content/commands/fcall.md | 1 - content/commands/fcall_ro.md | 1 - content/commands/flushall.md | 1 - content/commands/flushdb.md | 1 - content/commands/ft._list.md | 1 - content/commands/ft.aggregate.md | 68 +++++++++----- content/commands/ft.aliasadd.md | 1 - content/commands/ft.aliasdel.md | 1 - content/commands/ft.aliasupdate.md | 1 - content/commands/ft.alter.md | 1 - content/commands/ft.config-get.md | 1 - content/commands/ft.config-help.md | 1 - content/commands/ft.config-set.md | 1 - content/commands/ft.create.md | 59 +++++++++---- content/commands/ft.cursor-del.md | 1 - content/commands/ft.cursor-read.md | 1 - content/commands/ft.dictadd.md | 1 - content/commands/ft.dictdel.md | 1 - content/commands/ft.dictdump.md | 1 - content/commands/ft.dropindex.md | 5 +- content/commands/ft.explain.md | 5 +- content/commands/ft.explaincli.md | 5 +- content/commands/ft.info.md | 1 - content/commands/ft.profile.md | 1 - content/commands/ft.search.md | 88 +++++++++++++------ content/commands/ft.spellcheck.md | 12 ++- content/commands/ft.sugadd.md | 6 +- content/commands/ft.sugdel.md | 1 - content/commands/ft.sugget.md | 10 ++- content/commands/ft.suglen.md | 1 - content/commands/ft.syndump.md | 1 - content/commands/ft.synupdate.md | 8 +- content/commands/ft.tagvals.md | 1 - content/commands/function-delete.md | 1 - content/commands/function-dump.md | 1 - content/commands/function-flush.md | 1 - content/commands/function-help.md | 1 - content/commands/function-kill.md | 1 - content/commands/function-list.md | 1 - content/commands/function-load.md | 1 - content/commands/function-restore.md | 1 - content/commands/function-stats.md | 1 - content/commands/function.md | 1 - content/commands/geoadd.md | 4 +- content/commands/geodist.md | 1 - content/commands/geohash.md | 1 - content/commands/geopos.md | 1 - content/commands/georadius.md | 7 +- content/commands/georadius_ro.md | 4 +- content/commands/georadiusbymember.md | 7 +- content/commands/georadiusbymember_ro.md | 4 +- content/commands/geosearch.md | 10 ++- content/commands/geosearchstore.md | 10 ++- content/commands/get.md | 1 - content/commands/getbit.md | 1 - content/commands/getdel.md | 1 - content/commands/getex.md | 4 +- content/commands/getrange.md | 1 - content/commands/getset.md | 1 - content/commands/hdel.md | 1 - content/commands/hello.md | 1 - content/commands/hexists.md | 1 - content/commands/hexpire.md | 4 +- content/commands/hexpireat.md | 4 +- content/commands/hexpiretime.md | 1 - content/commands/hget.md | 1 - content/commands/hgetall.md | 1 - content/commands/hgetdel.md | 1 - content/commands/hgetex.md | 5 +- content/commands/hincrby.md | 1 - content/commands/hincrbyfloat.md | 1 - content/commands/hkeys.md | 1 - content/commands/hlen.md | 1 - content/commands/hmget.md | 1 - content/commands/hmset.md | 1 - content/commands/hpersist.md | 1 - content/commands/hpexpire.md | 4 +- content/commands/hpexpireat.md | 4 +- content/commands/hpexpiretime.md | 1 - content/commands/hpttl.md | 1 - content/commands/hrandfield.md | 1 - content/commands/hscan.md | 1 - content/commands/hset.md | 1 - content/commands/hsetex.md | 7 +- content/commands/hsetnx.md | 1 - content/commands/hstrlen.md | 1 - content/commands/httl.md | 1 - content/commands/hvals.md | 1 - content/commands/incr.md | 1 - content/commands/incrby.md | 1 - content/commands/incrbyfloat.md | 1 - content/commands/info.md | 1 - content/commands/json.arrappend.md | 3 +- content/commands/json.arrindex.md | 1 - content/commands/json.arrinsert.md | 1 - content/commands/json.arrlen.md | 1 - content/commands/json.arrpop.md | 1 - content/commands/json.arrtrim.md | 1 - content/commands/json.clear.md | 1 - content/commands/json.debug-help.md | 1 - content/commands/json.debug-memory.md | 1 - content/commands/json.debug.md | 1 - content/commands/json.del.md | 1 - content/commands/json.forget.md | 1 - content/commands/json.get.md | 4 +- content/commands/json.merge.md | 1 - content/commands/json.mget.md | 1 - content/commands/json.mset.md | 1 - content/commands/json.numincrby.md | 1 - content/commands/json.nummultby.md | 1 - content/commands/json.objkeys.md | 1 - content/commands/json.objlen.md | 1 - content/commands/json.resp.md | 1 - content/commands/json.set.md | 1 - content/commands/json.strappend.md | 1 - content/commands/json.strlen.md | 1 - content/commands/json.toggle.md | 1 - content/commands/json.type.md | 1 - content/commands/keys.md | 1 - content/commands/lastsave.md | 1 - content/commands/latency-doctor.md | 1 - content/commands/latency-graph.md | 1 - content/commands/latency-help.md | 1 - content/commands/latency-histogram.md | 1 - content/commands/latency-history.md | 1 - content/commands/latency-latest.md | 1 - content/commands/latency-reset.md | 1 - content/commands/latency.md | 1 - content/commands/lcs.md | 1 - content/commands/lindex.md | 1 - content/commands/linsert.md | 1 - content/commands/llen.md | 1 - content/commands/lmove.md | 1 - content/commands/lmpop.md | 1 - content/commands/lolwut.md | 1 - content/commands/lpop.md | 1 - content/commands/lpos.md | 1 - content/commands/lpush.md | 1 - content/commands/lpushx.md | 1 - content/commands/lrange.md | 1 - content/commands/lrem.md | 1 - content/commands/lset.md | 1 - content/commands/ltrim.md | 1 - content/commands/memory-doctor.md | 1 - content/commands/memory-help.md | 1 - content/commands/memory-malloc-stats.md | 1 - content/commands/memory-purge.md | 1 - content/commands/memory-stats.md | 1 - content/commands/memory-usage.md | 1 - content/commands/memory.md | 1 - content/commands/mget.md | 1 - content/commands/migrate.md | 4 +- content/commands/module-help.md | 1 - content/commands/module-list.md | 1 - content/commands/module-load.md | 1 - content/commands/module-loadex.md | 4 +- content/commands/module-unload.md | 1 - content/commands/module.md | 1 - content/commands/monitor.md | 1 - content/commands/move.md | 1 - content/commands/mset.md | 1 - content/commands/msetnx.md | 1 - content/commands/multi.md | 1 - content/commands/object-encoding.md | 1 - content/commands/object-freq.md | 1 - content/commands/object-help.md | 1 - content/commands/object-idletime.md | 1 - content/commands/object-refcount.md | 1 - content/commands/object.md | 1 - content/commands/persist.md | 1 - content/commands/pexpire.md | 1 - content/commands/pexpireat.md | 1 - content/commands/pexpiretime.md | 1 - content/commands/pfadd.md | 1 - content/commands/pfcount.md | 1 - content/commands/pfdebug.md | 1 - content/commands/pfmerge.md | 1 - content/commands/pfselftest.md | 1 - content/commands/ping.md | 1 - content/commands/psetex.md | 1 - content/commands/psubscribe.md | 1 - content/commands/psync.md | 1 - content/commands/pttl.md | 1 - content/commands/publish.md | 1 - content/commands/pubsub-channels.md | 1 - content/commands/pubsub-help.md | 1 - content/commands/pubsub-numpat.md | 1 - content/commands/pubsub-numsub.md | 1 - content/commands/pubsub-shardchannels.md | 1 - content/commands/pubsub-shardnumsub.md | 1 - content/commands/pubsub.md | 1 - content/commands/punsubscribe.md | 1 - content/commands/quit.md | 1 - content/commands/randomkey.md | 1 - content/commands/readonly.md | 1 - content/commands/readwrite.md | 1 - content/commands/rename.md | 1 - content/commands/renamenx.md | 1 - content/commands/replconf.md | 1 - content/commands/replicaof.md | 1 - content/commands/reset.md | 1 - content/commands/restore-asking.md | 4 +- content/commands/restore.md | 4 +- content/commands/role.md | 1 - content/commands/rpop.md | 1 - content/commands/rpoplpush.md | 1 - content/commands/rpush.md | 1 - content/commands/rpushx.md | 1 - content/commands/sadd.md | 1 - content/commands/save.md | 1 - content/commands/scan.md | 1 - content/commands/scard.md | 1 - content/commands/script-debug.md | 1 - content/commands/script-exists.md | 1 - content/commands/script-flush.md | 1 - content/commands/script-help.md | 1 - content/commands/script-kill.md | 1 - content/commands/script-load.md | 1 - content/commands/script.md | 1 - content/commands/sdiff.md | 1 - content/commands/sdiffstore.md | 1 - content/commands/select.md | 1 - content/commands/set.md | 1 - content/commands/setbit.md | 1 - content/commands/setex.md | 1 - content/commands/setnx.md | 1 - content/commands/setrange.md | 1 - content/commands/shutdown.md | 1 - content/commands/sinter.md | 1 - content/commands/sintercard.md | 1 - content/commands/sinterstore.md | 1 - content/commands/sismember.md | 1 - content/commands/slaveof.md | 1 - content/commands/slowlog-get.md | 1 - content/commands/slowlog-help.md | 1 - content/commands/slowlog-len.md | 1 - content/commands/slowlog-reset.md | 1 - content/commands/slowlog.md | 1 - content/commands/smembers.md | 1 - content/commands/smismember.md | 1 - content/commands/smove.md | 1 - content/commands/sort.md | 4 +- content/commands/sort_ro.md | 4 +- content/commands/spop.md | 1 - content/commands/spublish.md | 1 - content/commands/srandmember.md | 1 - content/commands/srem.md | 1 - content/commands/sscan.md | 1 - content/commands/ssubscribe.md | 1 - content/commands/strlen.md | 1 - content/commands/subscribe.md | 1 - content/commands/substr.md | 1 - content/commands/sunion.md | 1 - content/commands/sunionstore.md | 1 - content/commands/sunsubscribe.md | 1 - content/commands/swapdb.md | 1 - content/commands/sync.md | 1 - content/commands/tdigest.add.md | 1 - content/commands/tdigest.byrank.md | 5 +- content/commands/tdigest.byrevrank.md | 9 +- content/commands/tdigest.cdf.md | 1 - content/commands/tdigest.create.md | 1 - content/commands/tdigest.info.md | 1 - content/commands/tdigest.max.md | 1 - content/commands/tdigest.merge.md | 4 +- content/commands/tdigest.min.md | 1 - content/commands/tdigest.quantile.md | 5 +- content/commands/tdigest.rank.md | 11 ++- content/commands/tdigest.reset.md | 1 - content/commands/tdigest.revrank.md | 7 +- content/commands/tdigest.trimmed_mean.md | 1 - content/commands/time.md | 1 - content/commands/topk.add.md | 1 - content/commands/topk.count.md | 1 - content/commands/topk.incrby.md | 1 - content/commands/topk.info.md | 1 - content/commands/topk.list.md | 1 - content/commands/topk.query.md | 1 - content/commands/topk.reserve.md | 1 - content/commands/touch.md | 1 - content/commands/ts.add.md | 35 +++++--- content/commands/ts.alter.md | 23 +++-- content/commands/ts.create.md | 24 +++-- content/commands/ts.createrule.md | 14 +-- content/commands/ts.decrby.md | 27 ++++-- content/commands/ts.del.md | 1 - content/commands/ts.deleterule.md | 1 - content/commands/ts.get.md | 5 +- content/commands/ts.incrby.md | 28 ++++-- content/commands/ts.info.md | 5 +- content/commands/ts.madd.md | 1 - content/commands/ts.mget.md | 7 +- content/commands/ts.mrange.md | 40 ++++++--- content/commands/ts.mrevrange.md | 40 ++++++--- content/commands/ts.queryindex.md | 7 +- content/commands/ts.range.md | 25 ++++-- content/commands/ts.revrange.md | 25 ++++-- content/commands/ttl.md | 1 - content/commands/type.md | 1 - content/commands/unlink.md | 1 - content/commands/unsubscribe.md | 1 - content/commands/unwatch.md | 1 - content/commands/vadd.md | 14 +-- content/commands/vcard.md | 6 +- content/commands/vdim.md | 6 +- content/commands/vemb.md | 6 +- content/commands/vgetattr.md | 6 +- content/commands/vinfo.md | 6 +- content/commands/vismember.md | 4 +- content/commands/vlinks.md | 6 +- content/commands/vrandmember.md | 6 +- content/commands/vrem.md | 9 +- content/commands/vsetattr.md | 6 +- content/commands/vsim.md | 10 ++- content/commands/wait.md | 1 - content/commands/waitaof.md | 1 - content/commands/watch.md | 1 - content/commands/xack.md | 1 - content/commands/xackdel.md | 8 +- content/commands/xadd.md | 7 +- content/commands/xautoclaim.md | 4 +- content/commands/xclaim.md | 7 +- content/commands/xdel.md | 1 - content/commands/xdelex.md | 1 - content/commands/xgroup-create.md | 4 +- content/commands/xgroup-createconsumer.md | 1 - content/commands/xgroup-delconsumer.md | 1 - content/commands/xgroup-destroy.md | 1 - content/commands/xgroup-help.md | 1 - content/commands/xgroup-setid.md | 1 - content/commands/xgroup.md | 1 - content/commands/xinfo-consumers.md | 1 - content/commands/xinfo-groups.md | 1 - content/commands/xinfo-help.md | 1 - content/commands/xinfo-stream.md | 1 - content/commands/xinfo.md | 1 - content/commands/xlen.md | 1 - content/commands/xpending.md | 1 - content/commands/xrange.md | 1 - content/commands/xread.md | 4 +- content/commands/xreadgroup.md | 4 +- content/commands/xrevrange.md | 1 - content/commands/xsetid.md | 4 +- content/commands/xtrim.md | 4 +- content/commands/zadd.md | 4 +- content/commands/zcard.md | 1 - content/commands/zcount.md | 1 - content/commands/zdiff.md | 1 - content/commands/zdiffstore.md | 1 - content/commands/zincrby.md | 1 - content/commands/zinter.md | 4 +- content/commands/zintercard.md | 1 - content/commands/zinterstore.md | 4 +- content/commands/zlexcount.md | 1 - content/commands/zmpop.md | 1 - content/commands/zmscore.md | 1 - content/commands/zpopmax.md | 1 - content/commands/zpopmin.md | 1 - content/commands/zrandmember.md | 1 - content/commands/zrange.md | 4 +- content/commands/zrangebylex.md | 1 - content/commands/zrangebyscore.md | 1 - content/commands/zrangestore.md | 4 +- content/commands/zrank.md | 1 - content/commands/zrem.md | 1 - content/commands/zremrangebylex.md | 1 - content/commands/zremrangebyrank.md | 1 - content/commands/zremrangebyscore.md | 1 - content/commands/zrevrange.md | 1 - content/commands/zrevrangebylex.md | 1 - content/commands/zrevrangebyscore.md | 1 - content/commands/zrevrank.md | 1 - content/commands/zscan.md | 1 - content/commands/zscore.md | 1 - content/commands/zunion.md | 4 +- content/commands/zunionstore.md | 4 +- 518 files changed, 600 insertions(+), 780 deletions(-) diff --git a/content/commands/acl-cat.md b/content/commands/acl-cat.md index 709677c373..552ea3569c 100644 --- a/content/commands/acl-cat.md +++ b/content/commands/acl-cat.md @@ -14,7 +14,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/acl-deluser.md b/content/commands/acl-deluser.md index 826e16bce7..cadefe6e4c 100644 --- a/content/commands/acl-deluser.md +++ b/content/commands/acl-deluser.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/acl-dryrun.md b/content/commands/acl-dryrun.md index e17ad6b2de..5e98761c90 100644 --- a/content/commands/acl-dryrun.md +++ b/content/commands/acl-dryrun.md @@ -23,7 +23,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/acl-genpass.md b/content/commands/acl-genpass.md index 1a32a7794b..4650087822 100644 --- a/content/commands/acl-genpass.md +++ b/content/commands/acl-genpass.md @@ -14,7 +14,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/acl-getuser.md b/content/commands/acl-getuser.md index 32ffeb2f7b..718f24600a 100644 --- a/content/commands/acl-getuser.md +++ b/content/commands/acl-getuser.md @@ -15,7 +15,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/acl-help.md b/content/commands/acl-help.md index a14b075cb8..95cfabc153 100644 --- a/content/commands/acl-help.md +++ b/content/commands/acl-help.md @@ -9,7 +9,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/acl-list.md b/content/commands/acl-list.md index f884ee9f1c..1d90289e59 100644 --- a/content/commands/acl-list.md +++ b/content/commands/acl-list.md @@ -11,7 +11,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/acl-load.md b/content/commands/acl-load.md index 934b67df87..87fddc0728 100644 --- a/content/commands/acl-load.md +++ b/content/commands/acl-load.md @@ -11,7 +11,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/acl-log.md b/content/commands/acl-log.md index 6ca6b068df..128eec01b3 100644 --- a/content/commands/acl-log.md +++ b/content/commands/acl-log.md @@ -23,7 +23,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/acl-save.md b/content/commands/acl-save.md index 0728ea55d4..8c6b0a29de 100644 --- a/content/commands/acl-save.md +++ b/content/commands/acl-save.md @@ -11,7 +11,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/acl-setuser.md b/content/commands/acl-setuser.md index 6353750d34..7911f9d4c0 100644 --- a/content/commands/acl-setuser.md +++ b/content/commands/acl-setuser.md @@ -20,7 +20,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/acl-users.md b/content/commands/acl-users.md index ebcb4be570..69e7a5dfe7 100644 --- a/content/commands/acl-users.md +++ b/content/commands/acl-users.md @@ -11,7 +11,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/acl-whoami.md b/content/commands/acl-whoami.md index 47b1605849..cf955fb895 100644 --- a/content/commands/acl-whoami.md +++ b/content/commands/acl-whoami.md @@ -9,7 +9,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/acl.md b/content/commands/acl.md index 9e6d822c6d..8bf87b6c21 100644 --- a/content/commands/acl.md +++ b/content/commands/acl.md @@ -9,7 +9,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: Depends on subcommand. diff --git a/content/commands/append.md b/content/commands/append.md index d03fe53526..279cddba1a 100644 --- a/content/commands/append.md +++ b/content/commands/append.md @@ -19,7 +19,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/asking.md b/content/commands/asking.md index 43d9a0e3fe..5736eb0e1f 100644 --- a/content/commands/asking.md +++ b/content/commands/asking.md @@ -10,7 +10,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/auth.md b/content/commands/auth.md index 473c0c8dc4..23d877def4 100644 --- a/content/commands/auth.md +++ b/content/commands/auth.md @@ -19,7 +19,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/bf.add.md b/content/commands/bf.add.md index aa03bcf380..68c602ebd5 100644 --- a/content/commands/bf.add.md +++ b/content/commands/bf.add.md @@ -15,7 +15,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(k), where k is the number of hash functions used by the last sub-filter diff --git a/content/commands/bf.card.md b/content/commands/bf.card.md index 3e2b67beb5..8f483eb816 100644 --- a/content/commands/bf.card.md +++ b/content/commands/bf.card.md @@ -13,7 +13,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/bf.exists.md b/content/commands/bf.exists.md index 03ef51b15f..66f4674525 100644 --- a/content/commands/bf.exists.md +++ b/content/commands/bf.exists.md @@ -15,7 +15,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(k), where k is the number of hash functions used by the last sub-filter diff --git a/content/commands/bf.info.md b/content/commands/bf.info.md index 996cae9d97..8a91c6b605 100644 --- a/content/commands/bf.info.md +++ b/content/commands/bf.info.md @@ -32,7 +32,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/bf.insert.md b/content/commands/bf.insert.md index 942fd1a9ff..b2f4c3cd0d 100644 --- a/content/commands/bf.insert.md +++ b/content/commands/bf.insert.md @@ -39,7 +39,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(k * n), where k is the number of hash functions and n is the number @@ -54,8 +53,10 @@ since: 1.0.0 stack_path: docs/data-types/probabilistic summary: Adds one or more items to a Bloom Filter. A filter will be created if it does not exist -syntax_fmt: "BF.INSERT key [CAPACITY\_capacity] [ERROR\_error]\n [EXPANSION\_expansion]\ - \ [NOCREATE] [NONSCALING] ITEMS item [item\n ...]" +syntax_fmt: "BF.INSERT key [CAPACITY\_capacity] [ERROR\_error] + [EXPANSION\_expansion]\ + \ [NOCREATE] [NONSCALING] ITEMS item [item + ...]" syntax_str: "[CAPACITY\_capacity] [ERROR\_error] [EXPANSION\_expansion] [NOCREATE]\ \ [NONSCALING] ITEMS item [item ...]" title: BF.INSERT diff --git a/content/commands/bf.loadchunk.md b/content/commands/bf.loadchunk.md index 5631b1fd48..34910f63f5 100644 --- a/content/commands/bf.loadchunk.md +++ b/content/commands/bf.loadchunk.md @@ -17,7 +17,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(n), where n is the capacity diff --git a/content/commands/bf.madd.md b/content/commands/bf.madd.md index 6590d9ad29..ae24203b0f 100644 --- a/content/commands/bf.madd.md +++ b/content/commands/bf.madd.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(k * n), where k is the number of hash functions and n is the number diff --git a/content/commands/bf.mexists.md b/content/commands/bf.mexists.md index bc7f0ac6f5..942d486bad 100644 --- a/content/commands/bf.mexists.md +++ b/content/commands/bf.mexists.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(k * n), where k is the number of hash functions and n is the number diff --git a/content/commands/bf.reserve.md b/content/commands/bf.reserve.md index 32251d5ee4..2c376bf472 100644 --- a/content/commands/bf.reserve.md +++ b/content/commands/bf.reserve.md @@ -25,7 +25,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) @@ -37,7 +36,8 @@ module: Bloom since: 1.0.0 stack_path: docs/data-types/probabilistic summary: Creates a new Bloom Filter -syntax_fmt: "BF.RESERVE key error_rate capacity [EXPANSION\_expansion]\n [NONSCALING]" +syntax_fmt: "BF.RESERVE key error_rate capacity [EXPANSION\_expansion] + [NONSCALING]" syntax_str: "error_rate capacity [EXPANSION\_expansion] [NONSCALING]" title: BF.RESERVE --- diff --git a/content/commands/bf.scandump.md b/content/commands/bf.scandump.md index 3b6455d4cb..30218e9f77 100644 --- a/content/commands/bf.scandump.md +++ b/content/commands/bf.scandump.md @@ -15,7 +15,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(n), where n is the capacity diff --git a/content/commands/bgrewriteaof.md b/content/commands/bgrewriteaof.md index 5763da8650..e518dafdc8 100644 --- a/content/commands/bgrewriteaof.md +++ b/content/commands/bgrewriteaof.md @@ -11,7 +11,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/bgsave.md b/content/commands/bgsave.md index 7962f36c35..cb5c2d2738 100644 --- a/content/commands/bgsave.md +++ b/content/commands/bgsave.md @@ -18,7 +18,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/bitcount.md b/content/commands/bitcount.md index 4f1e749cdf..a80fcf557a 100644 --- a/content/commands/bitcount.md +++ b/content/commands/bitcount.md @@ -39,7 +39,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/bitfield.md b/content/commands/bitfield.md index 459688355a..679fe081b2 100644 --- a/content/commands/bitfield.md +++ b/content/commands/bitfield.md @@ -80,7 +80,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -109,10 +108,14 @@ key_specs: linkTitle: BITFIELD since: 3.2.0 summary: Performs arbitrary bitfield integer operations on strings. -syntax_fmt: "BITFIELD key [GET\_encoding offset | [OVERFLOW\_]\n\ - \ \n [GET\_encoding\ - \ offset | [OVERFLOW\_]\n \n ...]]" +syntax_fmt: "BITFIELD key [GET\_encoding offset | [OVERFLOW\_] +\ + \ + [GET\_encoding\ + \ offset | [OVERFLOW\_] + + ...]]" syntax_str: "[GET\_encoding offset | [OVERFLOW\_] [GET\_encoding offset | [OVERFLOW\_\ ] \ diff --git a/content/commands/bitfield_ro.md b/content/commands/bitfield_ro.md index 46625a7545..e6f5da3814 100644 --- a/content/commands/bitfield_ro.md +++ b/content/commands/bitfield_ro.md @@ -29,7 +29,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/bitop.md b/content/commands/bitop.md index e573944cc0..a759b6dc5b 100644 --- a/content/commands/bitop.md +++ b/content/commands/bitop.md @@ -56,7 +56,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -94,7 +93,8 @@ key_specs: linkTitle: BITOP since: 2.6.0 summary: Performs bitwise operations on multiple strings, and stores the result. -syntax_fmt: "BITOP destkey key [key ...]" +syntax_fmt: BITOP destkey key + [key ...] syntax_str: destkey key [key ...] title: BITOP --- diff --git a/content/commands/bitpos.md b/content/commands/bitpos.md index bdac00ee3d..10a8fc472e 100644 --- a/content/commands/bitpos.md +++ b/content/commands/bitpos.md @@ -46,7 +46,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/blmove.md b/content/commands/blmove.md index d49a73016b..b6f4cd14c6 100644 --- a/content/commands/blmove.md +++ b/content/commands/blmove.md @@ -46,7 +46,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/blmpop.md b/content/commands/blmpop.md index 75e1a3416e..8c20897153 100644 --- a/content/commands/blmpop.md +++ b/content/commands/blmpop.md @@ -40,7 +40,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/blpop.md b/content/commands/blpop.md index 285df06ad5..a38ab412bf 100644 --- a/content/commands/blpop.md +++ b/content/commands/blpop.md @@ -21,7 +21,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/brpop.md b/content/commands/brpop.md index 76c275d390..1e35e1e7c5 100644 --- a/content/commands/brpop.md +++ b/content/commands/brpop.md @@ -21,7 +21,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/brpoplpush.md b/content/commands/brpoplpush.md index 3751d9e221..6a050cc7ae 100644 --- a/content/commands/brpoplpush.md +++ b/content/commands/brpoplpush.md @@ -24,7 +24,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/bzmpop.md b/content/commands/bzmpop.md index 179f34f277..83f15508c7 100644 --- a/content/commands/bzmpop.md +++ b/content/commands/bzmpop.md @@ -40,7 +40,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/bzpopmax.md b/content/commands/bzpopmax.md index 3d854296fd..260f21f2ec 100644 --- a/content/commands/bzpopmax.md +++ b/content/commands/bzpopmax.md @@ -21,7 +21,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/bzpopmin.md b/content/commands/bzpopmin.md index 268f5d6557..8b0b545cae 100644 --- a/content/commands/bzpopmin.md +++ b/content/commands/bzpopmin.md @@ -21,7 +21,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/cf.add.md b/content/commands/cf.add.md index bde21d7555..bdf9d4cdd6 100644 --- a/content/commands/cf.add.md +++ b/content/commands/cf.add.md @@ -15,7 +15,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(k + i), where k is the number of sub-filters and i is maxIterations diff --git a/content/commands/cf.addnx.md b/content/commands/cf.addnx.md index 9d10fb0121..83a4d0b920 100644 --- a/content/commands/cf.addnx.md +++ b/content/commands/cf.addnx.md @@ -15,7 +15,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(k + i), where k is the number of sub-filters and i is maxIterations diff --git a/content/commands/cf.count.md b/content/commands/cf.count.md index 3fe6d25777..7a20316646 100644 --- a/content/commands/cf.count.md +++ b/content/commands/cf.count.md @@ -15,7 +15,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(k), where k is the number of sub-filters diff --git a/content/commands/cf.del.md b/content/commands/cf.del.md index b39b41821a..306e781566 100644 --- a/content/commands/cf.del.md +++ b/content/commands/cf.del.md @@ -15,7 +15,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(k), where k is the number of sub-filters diff --git a/content/commands/cf.exists.md b/content/commands/cf.exists.md index 28ca0abfb3..e09284f780 100644 --- a/content/commands/cf.exists.md +++ b/content/commands/cf.exists.md @@ -15,7 +15,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(k), where k is the number of sub-filters diff --git a/content/commands/cf.info.md b/content/commands/cf.info.md index 4f9b14c0dc..dd24fb1a63 100644 --- a/content/commands/cf.info.md +++ b/content/commands/cf.info.md @@ -13,7 +13,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/cf.insert.md b/content/commands/cf.insert.md index 9f18a81471..457f5f08df 100644 --- a/content/commands/cf.insert.md +++ b/content/commands/cf.insert.md @@ -27,7 +27,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(n * (k + i)), where n is the number of items, k is the number of sub-filters diff --git a/content/commands/cf.insertnx.md b/content/commands/cf.insertnx.md index f9f1c734cf..a490bde939 100644 --- a/content/commands/cf.insertnx.md +++ b/content/commands/cf.insertnx.md @@ -27,7 +27,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(n * (k + i)), where n is the number of items, k is the number of sub-filters diff --git a/content/commands/cf.loadchunk.md b/content/commands/cf.loadchunk.md index e4a279de06..66b0f62409 100644 --- a/content/commands/cf.loadchunk.md +++ b/content/commands/cf.loadchunk.md @@ -17,7 +17,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(n), where n is the capacity diff --git a/content/commands/cf.mexists.md b/content/commands/cf.mexists.md index 28abd47fa0..ed4e9537c4 100644 --- a/content/commands/cf.mexists.md +++ b/content/commands/cf.mexists.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(k * n), where k is the number of sub-filters and n is the number of diff --git a/content/commands/cf.reserve.md b/content/commands/cf.reserve.md index 1104d3e530..25724cf647 100644 --- a/content/commands/cf.reserve.md +++ b/content/commands/cf.reserve.md @@ -27,7 +27,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) @@ -39,7 +38,8 @@ module: Bloom since: 1.0.0 stack_path: docs/data-types/probabilistic summary: Creates a new Cuckoo Filter -syntax_fmt: "CF.RESERVE key capacity [BUCKETSIZE\_bucketsize]\n [MAXITERATIONS\_\ +syntax_fmt: "CF.RESERVE key capacity [BUCKETSIZE\_bucketsize] + [MAXITERATIONS\_\ maxiterations] [EXPANSION\_expansion]" syntax_str: "capacity [BUCKETSIZE\_bucketsize] [MAXITERATIONS\_maxiterations] [EXPANSION\_\ expansion]" diff --git a/content/commands/cf.scandump.md b/content/commands/cf.scandump.md index 3ae65b33c6..9ee181bdf1 100644 --- a/content/commands/cf.scandump.md +++ b/content/commands/cf.scandump.md @@ -15,7 +15,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(n), where n is the capacity diff --git a/content/commands/client-caching.md b/content/commands/client-caching.md index fbcab94b24..954a61db9d 100644 --- a/content/commands/client-caching.md +++ b/content/commands/client-caching.md @@ -22,7 +22,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/client-getname.md b/content/commands/client-getname.md index b09bfb7547..44c461dcab 100644 --- a/content/commands/client-getname.md +++ b/content/commands/client-getname.md @@ -10,7 +10,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/client-getredir.md b/content/commands/client-getredir.md index 4a91855cee..221153bb19 100644 --- a/content/commands/client-getredir.md +++ b/content/commands/client-getredir.md @@ -10,7 +10,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/client-help.md b/content/commands/client-help.md index bef46d9a5d..86591aae5a 100644 --- a/content/commands/client-help.md +++ b/content/commands/client-help.md @@ -10,7 +10,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/client-id.md b/content/commands/client-id.md index 16e5e69a34..c529fd30d7 100644 --- a/content/commands/client-id.md +++ b/content/commands/client-id.md @@ -10,7 +10,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/client-info.md b/content/commands/client-info.md index f568737b4d..61ba7686e3 100644 --- a/content/commands/client-info.md +++ b/content/commands/client-info.md @@ -10,7 +10,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/client-kill.md b/content/commands/client-kill.md index 53d7b74e76..fb4790ed64 100644 --- a/content/commands/client-kill.md +++ b/content/commands/client-kill.md @@ -93,7 +93,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -121,11 +120,16 @@ history: linkTitle: CLIENT KILL since: 2.4.0 summary: Terminates open connections. -syntax_fmt: "CLIENT KILL ] | [USER\_username] | [ADDR\_ip:port] |\n [LADDR\_\ - ip:port] | [SKIPME\_] | [MAXAGE\_maxage]\n [[ID\_client-id] | [TYPE\_\ - ] | [USER\_username] | [ADDR\_ip:port]\ - \ | [LADDR\_ip:port] |\n [SKIPME\_] | [MAXAGE\_maxage] ...]>>" +syntax_fmt: "CLIENT KILL ] | [USER\_username] | [ADDR\_ip:port] | + [LADDR\_\ + ip:port] | [SKIPME\_] | [MAXAGE\_maxage] + [[ID\_client-id] | [TYPE\_\ + ] | [USER\_username] | [ADDR\_ip:port]\ + \ | [LADDR\_ip:port] | + [SKIPME\_] | [MAXAGE\_maxage] ...]>>" syntax_str: '' title: CLIENT KILL --- diff --git a/content/commands/client-list.md b/content/commands/client-list.md index 26029e0ca7..4e3e4ee9f9 100644 --- a/content/commands/client-list.md +++ b/content/commands/client-list.md @@ -42,7 +42,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -73,7 +72,8 @@ history: linkTitle: CLIENT LIST since: 2.4.0 summary: Lists open connections. -syntax_fmt: "CLIENT LIST [TYPE\_]\n [ID\_client-id\ +syntax_fmt: "CLIENT LIST [TYPE\_] + [ID\_client-id\ \ [client-id ...]]" syntax_str: "[ID\_client-id [client-id ...]]" title: CLIENT LIST diff --git a/content/commands/client-no-evict.md b/content/commands/client-no-evict.md index 14f56eb3d1..ef46d20b40 100644 --- a/content/commands/client-no-evict.md +++ b/content/commands/client-no-evict.md @@ -24,7 +24,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/client-no-touch.md b/content/commands/client-no-touch.md index c609a24093..8d489a3e07 100644 --- a/content/commands/client-no-touch.md +++ b/content/commands/client-no-touch.md @@ -22,7 +22,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/client-pause.md b/content/commands/client-pause.md index 07b19a1ba2..7fc070ed14 100644 --- a/content/commands/client-pause.md +++ b/content/commands/client-pause.md @@ -29,7 +29,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/client-reply.md b/content/commands/client-reply.md index 5f085cc56f..5fe8f096f8 100644 --- a/content/commands/client-reply.md +++ b/content/commands/client-reply.md @@ -26,7 +26,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/client-setinfo.md b/content/commands/client-setinfo.md index b9b7f9c797..2a3c667b0a 100644 --- a/content/commands/client-setinfo.md +++ b/content/commands/client-setinfo.md @@ -22,7 +22,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/client-setname.md b/content/commands/client-setname.md index eb5977a9b9..ad42701b1a 100644 --- a/content/commands/client-setname.md +++ b/content/commands/client-setname.md @@ -14,7 +14,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/client-tracking.md b/content/commands/client-tracking.md index c453c17a88..740b1855c5 100644 --- a/content/commands/client-tracking.md +++ b/content/commands/client-tracking.md @@ -54,7 +54,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -68,7 +67,8 @@ hidden: false linkTitle: CLIENT TRACKING since: 6.0.0 summary: Controls server-assisted client-side caching for the connection. -syntax_fmt: "CLIENT TRACKING [REDIRECT\_client-id] [PREFIX\_prefix\n [PREFIX\ +syntax_fmt: "CLIENT TRACKING [REDIRECT\_client-id] [PREFIX\_prefix + [PREFIX\ \ prefix ...]] [BCAST] [OPTIN] [OPTOUT] [NOLOOP]" syntax_str: "[REDIRECT\_client-id] [PREFIX\_prefix [PREFIX prefix ...]] [BCAST] [OPTIN]\ \ [OPTOUT] [NOLOOP]" diff --git a/content/commands/client-trackinginfo.md b/content/commands/client-trackinginfo.md index 59a892d129..3749ed37bf 100644 --- a/content/commands/client-trackinginfo.md +++ b/content/commands/client-trackinginfo.md @@ -10,7 +10,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/client-unblock.md b/content/commands/client-unblock.md index 75b2ad936e..1be316295b 100644 --- a/content/commands/client-unblock.md +++ b/content/commands/client-unblock.md @@ -28,7 +28,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/client-unpause.md b/content/commands/client-unpause.md index c28afb9d47..7b644557b2 100644 --- a/content/commands/client-unpause.md +++ b/content/commands/client-unpause.md @@ -12,7 +12,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/client.md b/content/commands/client.md index 1c13b503bf..abc5826968 100644 --- a/content/commands/client.md +++ b/content/commands/client.md @@ -9,7 +9,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: Depends on subcommand. diff --git a/content/commands/cluster-addslots.md b/content/commands/cluster-addslots.md index 305718290f..e26b0632bb 100644 --- a/content/commands/cluster-addslots.md +++ b/content/commands/cluster-addslots.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-addslotsrange.md b/content/commands/cluster-addslotsrange.md index 522e60f024..db8a5e00e1 100644 --- a/content/commands/cluster-addslotsrange.md +++ b/content/commands/cluster-addslotsrange.md @@ -22,7 +22,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-bumpepoch.md b/content/commands/cluster-bumpepoch.md index edfc1daf53..de7dcffb8d 100644 --- a/content/commands/cluster-bumpepoch.md +++ b/content/commands/cluster-bumpepoch.md @@ -11,7 +11,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-count-failure-reports.md b/content/commands/cluster-count-failure-reports.md index ae31d6989e..6181a90d3b 100644 --- a/content/commands/cluster-count-failure-reports.md +++ b/content/commands/cluster-count-failure-reports.md @@ -15,7 +15,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-countkeysinslot.md b/content/commands/cluster-countkeysinslot.md index 7a104b3fe9..702507bea6 100644 --- a/content/commands/cluster-countkeysinslot.md +++ b/content/commands/cluster-countkeysinslot.md @@ -13,7 +13,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-delslots.md b/content/commands/cluster-delslots.md index 6071c57c0a..a376ec7459 100644 --- a/content/commands/cluster-delslots.md +++ b/content/commands/cluster-delslots.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-delslotsrange.md b/content/commands/cluster-delslotsrange.md index 0cb30b340d..82bbf6a781 100644 --- a/content/commands/cluster-delslotsrange.md +++ b/content/commands/cluster-delslotsrange.md @@ -22,7 +22,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-failover.md b/content/commands/cluster-failover.md index 7aca1c0a12..8b0bc826ee 100644 --- a/content/commands/cluster-failover.md +++ b/content/commands/cluster-failover.md @@ -24,7 +24,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-flushslots.md b/content/commands/cluster-flushslots.md index c78a02dc76..2c7d92a4ec 100644 --- a/content/commands/cluster-flushslots.md +++ b/content/commands/cluster-flushslots.md @@ -11,7 +11,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-forget.md b/content/commands/cluster-forget.md index 47b6193927..c3b6e703d1 100644 --- a/content/commands/cluster-forget.md +++ b/content/commands/cluster-forget.md @@ -15,7 +15,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-getkeysinslot.md b/content/commands/cluster-getkeysinslot.md index 0ff2248d15..7c906aa4ad 100644 --- a/content/commands/cluster-getkeysinslot.md +++ b/content/commands/cluster-getkeysinslot.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-help.md b/content/commands/cluster-help.md index 502ded8180..60f8bf174b 100644 --- a/content/commands/cluster-help.md +++ b/content/commands/cluster-help.md @@ -9,7 +9,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-info.md b/content/commands/cluster-info.md index 68275bc477..9b7d78367d 100644 --- a/content/commands/cluster-info.md +++ b/content/commands/cluster-info.md @@ -9,7 +9,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-keyslot.md b/content/commands/cluster-keyslot.md index b0d10ba78f..c16f485487 100644 --- a/content/commands/cluster-keyslot.md +++ b/content/commands/cluster-keyslot.md @@ -13,7 +13,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-links.md b/content/commands/cluster-links.md index aaafe08ba8..bbc0e14a28 100644 --- a/content/commands/cluster-links.md +++ b/content/commands/cluster-links.md @@ -9,7 +9,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-meet.md b/content/commands/cluster-meet.md index 7a34280681..a823da6261 100644 --- a/content/commands/cluster-meet.md +++ b/content/commands/cluster-meet.md @@ -23,7 +23,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-myid.md b/content/commands/cluster-myid.md index cfde39b385..768defe87a 100644 --- a/content/commands/cluster-myid.md +++ b/content/commands/cluster-myid.md @@ -9,7 +9,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-myshardid.md b/content/commands/cluster-myshardid.md index cc8f222605..693d5cf086 100644 --- a/content/commands/cluster-myshardid.md +++ b/content/commands/cluster-myshardid.md @@ -9,7 +9,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-nodes.md b/content/commands/cluster-nodes.md index 0bdefa6757..8d766ff438 100644 --- a/content/commands/cluster-nodes.md +++ b/content/commands/cluster-nodes.md @@ -9,7 +9,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-replicas.md b/content/commands/cluster-replicas.md index b353f0704f..7eb87342d2 100644 --- a/content/commands/cluster-replicas.md +++ b/content/commands/cluster-replicas.md @@ -15,7 +15,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-replicate.md b/content/commands/cluster-replicate.md index 23efd414e1..b8ec9e6b1b 100644 --- a/content/commands/cluster-replicate.md +++ b/content/commands/cluster-replicate.md @@ -15,7 +15,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-reset.md b/content/commands/cluster-reset.md index 25d035687a..ab0932928d 100644 --- a/content/commands/cluster-reset.md +++ b/content/commands/cluster-reset.md @@ -24,7 +24,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-saveconfig.md b/content/commands/cluster-saveconfig.md index df4c77e933..4260f3c384 100644 --- a/content/commands/cluster-saveconfig.md +++ b/content/commands/cluster-saveconfig.md @@ -11,7 +11,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-set-config-epoch.md b/content/commands/cluster-set-config-epoch.md index 8b36b2da5f..478e519687 100644 --- a/content/commands/cluster-set-config-epoch.md +++ b/content/commands/cluster-set-config-epoch.md @@ -15,7 +15,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-setslot.md b/content/commands/cluster-setslot.md index d87cd892b9..1305e1165b 100644 --- a/content/commands/cluster-setslot.md +++ b/content/commands/cluster-setslot.md @@ -34,7 +34,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -48,7 +47,8 @@ hidden: false linkTitle: CLUSTER SETSLOT since: 3.0.0 summary: Binds a hash slot to a node. -syntax_fmt: "CLUSTER SETSLOT slot " syntax_str: "" title: CLUSTER SETSLOT diff --git a/content/commands/cluster-shards.md b/content/commands/cluster-shards.md index 9a22c1541b..810e51518c 100644 --- a/content/commands/cluster-shards.md +++ b/content/commands/cluster-shards.md @@ -9,7 +9,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-slaves.md b/content/commands/cluster-slaves.md index 90b8999420..af2894e7b5 100644 --- a/content/commands/cluster-slaves.md +++ b/content/commands/cluster-slaves.md @@ -15,7 +15,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-slot-stats.md b/content/commands/cluster-slot-stats.md index 4af78556e9..8c695fa788 100644 --- a/content/commands/cluster-slot-stats.md +++ b/content/commands/cluster-slot-stats.md @@ -39,7 +39,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -85,8 +84,9 @@ reply_schema: since: 8.2.0 summary: Return an array of slot usage statistics for slots assigned to the current node. -syntax_fmt: "CLUSTER SLOT-STATS " +syntax_fmt: "CLUSTER SLOT-STATS " syntax_str: '' title: CLUSTER SLOT-STATS --- diff --git a/content/commands/cluster-slots.md b/content/commands/cluster-slots.md index 41712f59d9..ab9b1b6523 100644 --- a/content/commands/cluster-slots.md +++ b/content/commands/cluster-slots.md @@ -9,7 +9,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster.md b/content/commands/cluster.md index 2b2b49e75a..56fd534ce7 100644 --- a/content/commands/cluster.md +++ b/content/commands/cluster.md @@ -9,7 +9,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: Depends on subcommand. diff --git a/content/commands/cms.incrby.md b/content/commands/cms.incrby.md index 18a26133ee..1df72b7c27 100644 --- a/content/commands/cms.incrby.md +++ b/content/commands/cms.incrby.md @@ -20,7 +20,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(n) where n is the number of items diff --git a/content/commands/cms.info.md b/content/commands/cms.info.md index a7f0333826..aa59b1328c 100644 --- a/content/commands/cms.info.md +++ b/content/commands/cms.info.md @@ -13,7 +13,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/cms.initbydim.md b/content/commands/cms.initbydim.md index d0813364eb..3b017e9315 100644 --- a/content/commands/cms.initbydim.md +++ b/content/commands/cms.initbydim.md @@ -17,7 +17,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/cms.initbyprob.md b/content/commands/cms.initbyprob.md index d44d420848..7d63f59a0b 100644 --- a/content/commands/cms.initbyprob.md +++ b/content/commands/cms.initbyprob.md @@ -17,7 +17,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/cms.merge.md b/content/commands/cms.merge.md index b9a947120b..7f95fc7117 100644 --- a/content/commands/cms.merge.md +++ b/content/commands/cms.merge.md @@ -27,7 +27,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(n) where n is the number of sketches @@ -39,7 +38,8 @@ module: Bloom since: 2.0.0 stack_path: docs/data-types/probabilistic summary: Merges several sketches into one sketch -syntax_fmt: "CMS.MERGE destination numKeys source [source ...] [WEIGHTS weight\n \ +syntax_fmt: "CMS.MERGE destination numKeys source [source ...] [WEIGHTS weight + \ \ [weight ...]]" syntax_str: numKeys source [source ...] [WEIGHTS weight [weight ...]] title: CMS.MERGE diff --git a/content/commands/cms.query.md b/content/commands/cms.query.md index cdb47b067c..b132684e6c 100644 --- a/content/commands/cms.query.md +++ b/content/commands/cms.query.md @@ -15,7 +15,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(n) where n is the number of items diff --git a/content/commands/command-count.md b/content/commands/command-count.md index 77e002b41a..2fd0b11ddf 100644 --- a/content/commands/command-count.md +++ b/content/commands/command-count.md @@ -10,7 +10,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/command-docs.md b/content/commands/command-docs.md index f4d2aa1204..2f4e2f7fac 100644 --- a/content/commands/command-docs.md +++ b/content/commands/command-docs.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/command-getkeys.md b/content/commands/command-getkeys.md index 1b3c05d7b1..e5e65c82f6 100644 --- a/content/commands/command-getkeys.md +++ b/content/commands/command-getkeys.md @@ -19,7 +19,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/command-getkeysandflags.md b/content/commands/command-getkeysandflags.md index e4008bf73f..4a0699f0d6 100644 --- a/content/commands/command-getkeysandflags.md +++ b/content/commands/command-getkeysandflags.md @@ -19,7 +19,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/command-help.md b/content/commands/command-help.md index 43e949a7a9..3d4da1d77e 100644 --- a/content/commands/command-help.md +++ b/content/commands/command-help.md @@ -10,7 +10,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/command-info.md b/content/commands/command-info.md index 8d788c67e5..f4f75613c3 100644 --- a/content/commands/command-info.md +++ b/content/commands/command-info.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/command-list.md b/content/commands/command-list.md index 7180d14f5d..369035c6a5 100644 --- a/content/commands/command-list.md +++ b/content/commands/command-list.md @@ -28,7 +28,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -43,7 +42,8 @@ hints: linkTitle: COMMAND LIST since: 7.0.0 summary: Returns a list of command names. -syntax_fmt: "COMMAND LIST [FILTERBY\_]" syntax_str: '' title: COMMAND LIST diff --git a/content/commands/command.md b/content/commands/command.md index e2967a16cb..1def5413a5 100644 --- a/content/commands/command.md +++ b/content/commands/command.md @@ -10,7 +10,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/config-get.md b/content/commands/config-get.md index a1f8175403..547669f7df 100644 --- a/content/commands/config-get.md +++ b/content/commands/config-get.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/config-help.md b/content/commands/config-help.md index 0646501f51..3726655a50 100644 --- a/content/commands/config-help.md +++ b/content/commands/config-help.md @@ -9,7 +9,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/config-resetstat.md b/content/commands/config-resetstat.md index 1cd39322f6..b3c7cfca8a 100644 --- a/content/commands/config-resetstat.md +++ b/content/commands/config-resetstat.md @@ -11,7 +11,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/config-rewrite.md b/content/commands/config-rewrite.md index 8d043fa5fc..7255f661e4 100644 --- a/content/commands/config-rewrite.md +++ b/content/commands/config-rewrite.md @@ -11,7 +11,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/config-set.md b/content/commands/config-set.md index 2dfa63f3df..5c16abb5f2 100644 --- a/content/commands/config-set.md +++ b/content/commands/config-set.md @@ -22,7 +22,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/config.md b/content/commands/config.md index 740ff6b0a4..0a8e2d3d43 100644 --- a/content/commands/config.md +++ b/content/commands/config.md @@ -9,7 +9,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: Depends on subcommand. diff --git a/content/commands/copy.md b/content/commands/copy.md index c58beef355..5599cbabde 100644 --- a/content/commands/copy.md +++ b/content/commands/copy.md @@ -30,7 +30,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/dbsize.md b/content/commands/dbsize.md index 7b8232b8f8..97da76b49e 100644 --- a/content/commands/dbsize.md +++ b/content/commands/dbsize.md @@ -11,7 +11,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/debug.md b/content/commands/debug.md index ad6ea60900..6dcec987b1 100644 --- a/content/commands/debug.md +++ b/content/commands/debug.md @@ -11,7 +11,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/decr.md b/content/commands/decr.md index 80ea01fa21..c61acb2d0c 100644 --- a/content/commands/decr.md +++ b/content/commands/decr.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/decrby.md b/content/commands/decrby.md index e06ea76d8a..33a521dc4b 100644 --- a/content/commands/decrby.md +++ b/content/commands/decrby.md @@ -19,7 +19,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/del.md b/content/commands/del.md index 58d1094eb6..3a6904b66e 100644 --- a/content/commands/del.md +++ b/content/commands/del.md @@ -17,7 +17,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/discard.md b/content/commands/discard.md index 2c05a930cc..c8c0bb8b80 100644 --- a/content/commands/discard.md +++ b/content/commands/discard.md @@ -10,7 +10,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/dump.md b/content/commands/dump.md index ca4cd73bf0..1c0dd1c985 100644 --- a/content/commands/dump.md +++ b/content/commands/dump.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/echo.md b/content/commands/echo.md index 0ad2685045..e8296d1744 100644 --- a/content/commands/echo.md +++ b/content/commands/echo.md @@ -14,7 +14,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/eval.md b/content/commands/eval.md index c36bbbc907..e6fd148186 100644 --- a/content/commands/eval.md +++ b/content/commands/eval.md @@ -28,7 +28,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/eval_ro.md b/content/commands/eval_ro.md index cf13072f27..4776662739 100644 --- a/content/commands/eval_ro.md +++ b/content/commands/eval_ro.md @@ -28,7 +28,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/evalsha.md b/content/commands/evalsha.md index b9d00ad927..688c7c8812 100644 --- a/content/commands/evalsha.md +++ b/content/commands/evalsha.md @@ -28,7 +28,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/evalsha_ro.md b/content/commands/evalsha_ro.md index a368b5e9db..59ac0b2156 100644 --- a/content/commands/evalsha_ro.md +++ b/content/commands/evalsha_ro.md @@ -28,7 +28,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/exec.md b/content/commands/exec.md index 10a152d006..08c8548927 100644 --- a/content/commands/exec.md +++ b/content/commands/exec.md @@ -10,7 +10,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/exists.md b/content/commands/exists.md index 3030df46c1..032e621cf2 100644 --- a/content/commands/exists.md +++ b/content/commands/exists.md @@ -17,7 +17,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/expire.md b/content/commands/expire.md index e79b32ed65..8a59e3da00 100644 --- a/content/commands/expire.md +++ b/content/commands/expire.md @@ -40,7 +40,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/expireat.md b/content/commands/expireat.md index 531b390ea7..7f0c8cc187 100644 --- a/content/commands/expireat.md +++ b/content/commands/expireat.md @@ -40,7 +40,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/expiretime.md b/content/commands/expiretime.md index decf75cfff..774acdf147 100644 --- a/content/commands/expiretime.md +++ b/content/commands/expiretime.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/failover.md b/content/commands/failover.md index fcf52bc013..9b70b6142d 100644 --- a/content/commands/failover.md +++ b/content/commands/failover.md @@ -38,7 +38,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/fcall.md b/content/commands/fcall.md index 76eb1cc762..8761b9c3fb 100644 --- a/content/commands/fcall.md +++ b/content/commands/fcall.md @@ -28,7 +28,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/fcall_ro.md b/content/commands/fcall_ro.md index 10c85a723e..218877260b 100644 --- a/content/commands/fcall_ro.md +++ b/content/commands/fcall_ro.md @@ -28,7 +28,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/flushall.md b/content/commands/flushall.md index 5c282e2729..73185b3b05 100644 --- a/content/commands/flushall.md +++ b/content/commands/flushall.md @@ -27,7 +27,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/flushdb.md b/content/commands/flushdb.md index 52ce0e15c2..986c305e46 100644 --- a/content/commands/flushdb.md +++ b/content/commands/flushdb.md @@ -27,7 +27,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/ft._list.md b/content/commands/ft._list.md index 4c9099b771..7e9fc588b5 100644 --- a/content/commands/ft._list.md +++ b/content/commands/ft._list.md @@ -10,7 +10,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/ft.aggregate.md b/content/commands/ft.aggregate.md index 4e741aaed2..eebf497fd8 100644 --- a/content/commands/ft.aggregate.md +++ b/content/commands/ft.aggregate.md @@ -163,7 +163,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -179,24 +178,51 @@ since: 1.1.0 stack_path: docs/interact/search-and-query summary: Run a search query on an index and perform aggregate transformations on the results -syntax: "FT.AGGREGATE index query \n [VERBATIM] \n [LOAD count field [field ...]]\ - \ \n [TIMEOUT timeout] \n [GROUPBY nargs property [property ...] [REDUCE function\ - \ nargs arg [arg ...] [AS name] [REDUCE function nargs arg [arg ...] [AS name]\ - \ ...]] ...]] \n [SORTBY nargs [property ASC | DESC [property ASC | DESC ...]]\ - \ [MAX num] [WITHCOUNT] \n [APPLY expression AS name [APPLY expression AS name\ - \ ...]] \n [LIMIT offset num] \n [FILTER filter] \n [WITHCURSOR [COUNT read_size]\ - \ [MAXIDLE idle_time]] \n [PARAMS nargs name value [name value ...]] \n [SCORER scorer]\n - \ [ADDSCORES] \n [DIALECT\ - \ dialect]\n" -syntax_fmt: "FT.AGGREGATE index query [VERBATIM] [LOAD\_count field [field ...]]\n\ - \ [TIMEOUT\_timeout] [LOAD *] [GROUPBY\_nargs property [property ...]\n [REDUCE\_\ - function nargs arg [arg ...] [AS\_name] [REDUCE\_function\n nargs arg [arg ...]\ - \ [AS\_name] ...]] [GROUPBY\_nargs property\n [property ...] [REDUCE\_function\ - \ nargs arg [arg ...] [AS\_name]\n [REDUCE\_function nargs arg [arg ...] [AS\_\ - name] ...]] ...]]\n [SORTBY\_nargs [property [property \ - \ ...]]\n [MAX\_num]] [APPLY\_expression AS\_name [APPLY\_expression AS\_name\n\ - \ ...]] [LIMIT offset num] [FILTER\_filter] [WITHCURSOR\n [COUNT\_read_size] [MAXIDLE\_\ - idle_time]] [PARAMS nargs name value\n [name value ...]]\n [SCORER scorer]\n [ADDSCORES]\n [DIALECT\_dialect]" +syntax: "FT.AGGREGATE index query + [VERBATIM] + [LOAD count field [field ...]]\ + \ + [TIMEOUT timeout] + [GROUPBY nargs property [property ...] [REDUCE function\ + \ nargs arg [arg ...] [AS name] [REDUCE function nargs arg [arg ...] [AS name] ...]]\ + \ ...]] + [SORTBY nargs [property ASC | DESC [property ASC | DESC ...]] [MAX num]\ + \ [WITHCOUNT] + [APPLY expression AS name [APPLY expression AS name ...]] + \ + \ [LIMIT offset num] + [FILTER filter] + [WITHCURSOR [COUNT read_size] [MAXIDLE\ + \ idle_time]] + [PARAMS nargs name value [name value ...]] + [SCORER scorer] +\ + \ [ADDSCORES] + [DIALECT dialect] +" +syntax_fmt: "FT.AGGREGATE index query [VERBATIM] [LOAD\_count field [field ...]] +\ + \ [TIMEOUT\_timeout] [LOAD *] [GROUPBY\_nargs property [property ...] + [REDUCE\_\ + function nargs arg [arg ...] [AS\_name] [REDUCE\_function + nargs arg [arg ...]\ + \ [AS\_name] ...]] [GROUPBY\_nargs property + [property ...] [REDUCE\_function\ + \ nargs arg [arg ...] [AS\_name] + [REDUCE\_function nargs arg [arg ...] [AS\_\ + name] ...]] ...]] + [SORTBY\_nargs [property [property \ + \ ...]] + [MAX\_num]] [APPLY\_expression AS\_name [APPLY\_expression AS\_name +\ + \ ...]] [LIMIT offset num] [FILTER\_filter] [WITHCURSOR + [COUNT\_read_size] [MAXIDLE\_\ + idle_time]] [PARAMS nargs name value + [name value ...]] + [SCORER scorer] + [ADDSCORES] +\ + \ [DIALECT\_dialect]" syntax_str: "query [VERBATIM] [LOAD\_count field [field ...]] [TIMEOUT\_timeout] [LOAD\ \ *] [GROUPBY\_nargs property [property ...] [REDUCE\_function nargs arg [arg ...]\ \ [AS\_name] [REDUCE\_function nargs arg [arg ...] [AS\_name] ...]] [GROUPBY\_nargs\ @@ -204,8 +230,8 @@ syntax_str: "query [VERBATIM] [LOAD\_count field [field ...]] [TIMEOUT\_timeout] function nargs arg [arg ...] [AS\_name] ...]] ...]] [SORTBY\_nargs [property [property ...]] [MAX\_num]] [APPLY\_expression AS\_name [APPLY\_\ expression AS\_name ...]] [LIMIT offset num] [FILTER\_filter] [WITHCURSOR [COUNT\_\ - read_size] [MAXIDLE\_idle_time]] [PARAMS nargs name value [name value ...]] [SCORER scorer] [ADDSCORES] [DIALECT\_\ - dialect]" + read_size] [MAXIDLE\_idle_time]] [PARAMS nargs name value [name value ...]] [SCORER\ + \ scorer] [ADDSCORES] [DIALECT\_dialect]" title: FT.AGGREGATE --- diff --git a/content/commands/ft.aliasadd.md b/content/commands/ft.aliasadd.md index f3fab6b90c..cc2349d884 100644 --- a/content/commands/ft.aliasadd.md +++ b/content/commands/ft.aliasadd.md @@ -13,7 +13,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/ft.aliasdel.md b/content/commands/ft.aliasdel.md index df5c6de733..9a8b6169f2 100644 --- a/content/commands/ft.aliasdel.md +++ b/content/commands/ft.aliasdel.md @@ -11,7 +11,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/ft.aliasupdate.md b/content/commands/ft.aliasupdate.md index d05868a4c3..62a40004b1 100644 --- a/content/commands/ft.aliasupdate.md +++ b/content/commands/ft.aliasupdate.md @@ -13,7 +13,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/ft.alter.md b/content/commands/ft.alter.md index 9d830786e3..f73ecfb730 100644 --- a/content/commands/ft.alter.md +++ b/content/commands/ft.alter.md @@ -25,7 +25,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(N) where N is the number of keys in the keyspace diff --git a/content/commands/ft.config-get.md b/content/commands/ft.config-get.md index 95e79a9041..9e8d16653a 100644 --- a/content/commands/ft.config-get.md +++ b/content/commands/ft.config-get.md @@ -12,7 +12,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/ft.config-help.md b/content/commands/ft.config-help.md index e980ffaa4c..d074864cb7 100644 --- a/content/commands/ft.config-help.md +++ b/content/commands/ft.config-help.md @@ -12,7 +12,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/ft.config-set.md b/content/commands/ft.config-set.md index 460c277b9e..2607616a42 100644 --- a/content/commands/ft.config-set.md +++ b/content/commands/ft.config-set.md @@ -14,7 +14,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/ft.create.md b/content/commands/ft.create.md index 6453a369ff..171b4135e1 100644 --- a/content/commands/ft.create.md +++ b/content/commands/ft.create.md @@ -149,7 +149,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(K) at creation where K is the number of fields, O(N) if scanning the @@ -168,21 +167,49 @@ module: Search since: 1.0.0 stack_path: docs/interact/search-and-query summary: Creates an index with the given spec -syntax: "FT.CREATE index \n [ON HASH | JSON] \n [PREFIX count prefix [prefix ...]]\ - \ \n [FILTER {filter}]\n [LANGUAGE default_lang] \n [LANGUAGE_FIELD lang_attribute]\ - \ \n [SCORE default_score] \n [SCORE_FIELD score_attribute] \n [PAYLOAD_FIELD\ - \ payload_attribute] \n [MAXTEXTFIELDS] \n [TEMPORARY seconds] \n [NOOFFSETS]\ - \ \n [NOHL] \n [NOFIELDS] \n [NOFREQS] \n [STOPWORDS count [stopword ...]] \n\ - \ [SKIPINITIALSCAN]\n SCHEMA field_name [AS alias] TEXT | TAG | NUMERIC | GEO\ - \ | VECTOR | GEOSHAPE [ SORTABLE [UNF]] \n [NOINDEX] [ field_name [AS alias] TEXT\ - \ | TAG | NUMERIC | GEO | VECTOR | GEOSHAPE [ SORTABLE [UNF]] [NOINDEX] ...]\n" -syntax_fmt: "FT.CREATE index [ON\_] [PREFIX\_count prefix [prefix\n \ - \ ...]] [FILTER\_filter] [LANGUAGE\_default_lang]\n [LANGUAGE_FIELD\_lang_attribute]\ - \ [SCORE\_default_score]\n [SCORE_FIELD\_score_attribute] [PAYLOAD_FIELD\_payload_attribute]\n\ - \ [MAXTEXTFIELDS] [TEMPORARY\_seconds] [NOOFFSETS] [NOHL] [NOFIELDS]\n [NOFREQS]\ - \ [STOPWORDS\_count [stopword [stopword ...]]]\n [SKIPINITIALSCAN] SCHEMA field_name\ - \ [AS\_alias] [WITHSUFFIXTRIE] [SORTABLE\ - \ [UNF]]\n [NOINDEX] [field_name [AS\_alias] \ +syntax: "FT.CREATE index + [ON HASH | JSON] + [PREFIX count prefix [prefix ...]]\ + \ + [FILTER {filter}] + [LANGUAGE default_lang] + [LANGUAGE_FIELD lang_attribute]\ + \ + [SCORE default_score] + [SCORE_FIELD score_attribute] + [PAYLOAD_FIELD\ + \ payload_attribute] + [MAXTEXTFIELDS] + [TEMPORARY seconds] + [NOOFFSETS]\ + \ + [NOHL] + [NOFIELDS] + [NOFREQS] + [STOPWORDS count [stopword ...]] +\ + \ [SKIPINITIALSCAN] + SCHEMA field_name [AS alias] TEXT | TAG | NUMERIC | GEO\ + \ | VECTOR | GEOSHAPE [ SORTABLE [UNF]] + [NOINDEX] [ field_name [AS alias] TEXT\ + \ | TAG | NUMERIC | GEO | VECTOR | GEOSHAPE [ SORTABLE [UNF]] [NOINDEX] ...] +" +syntax_fmt: "FT.CREATE index [ON\_] [PREFIX\_count prefix [prefix + \ + \ ...]] [FILTER\_filter] [LANGUAGE\_default_lang] + [LANGUAGE_FIELD\_lang_attribute]\ + \ [SCORE\_default_score] + [SCORE_FIELD\_score_attribute] [PAYLOAD_FIELD\_payload_attribute] +\ + \ [MAXTEXTFIELDS] [TEMPORARY\_seconds] [NOOFFSETS] [NOHL] [NOFIELDS] + [NOFREQS]\ + \ [STOPWORDS\_count [stopword [stopword ...]]] + [SKIPINITIALSCAN] SCHEMA field_name\ + \ [AS\_alias] [WITHSUFFIXTRIE] [SORTABLE\ + \ [UNF]] + [NOINDEX] [field_name [AS\_alias] \ \ [WITHSUFFIXTRIE] [SORTABLE [UNF]] [NOINDEX] ...]" syntax_str: "[ON\_] [PREFIX\_count prefix [prefix ...]] [FILTER\_filter]\ \ [LANGUAGE\_default_lang] [LANGUAGE_FIELD\_lang_attribute] [SCORE\_default_score]\ diff --git a/content/commands/ft.cursor-del.md b/content/commands/ft.cursor-del.md index b632e6d313..13e603086f 100644 --- a/content/commands/ft.cursor-del.md +++ b/content/commands/ft.cursor-del.md @@ -14,7 +14,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/ft.cursor-read.md b/content/commands/ft.cursor-read.md index 69a1434655..c3159905d3 100644 --- a/content/commands/ft.cursor-read.md +++ b/content/commands/ft.cursor-read.md @@ -18,7 +18,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/ft.dictadd.md b/content/commands/ft.dictadd.md index 88aa4ea8ca..601a54a576 100644 --- a/content/commands/ft.dictadd.md +++ b/content/commands/ft.dictadd.md @@ -14,7 +14,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/ft.dictdel.md b/content/commands/ft.dictdel.md index 64db142410..242eec080d 100644 --- a/content/commands/ft.dictdel.md +++ b/content/commands/ft.dictdel.md @@ -14,7 +14,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/ft.dictdump.md b/content/commands/ft.dictdump.md index a5d02c730d..7420bb30eb 100644 --- a/content/commands/ft.dictdump.md +++ b/content/commands/ft.dictdump.md @@ -11,7 +11,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/ft.dropindex.md b/content/commands/ft.dropindex.md index 730ce99cea..b6ffe783ef 100644 --- a/content/commands/ft.dropindex.md +++ b/content/commands/ft.dropindex.md @@ -21,7 +21,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) or O(N) if documents are deleted, where N is the number of keys in @@ -34,7 +33,9 @@ module: Search since: 2.0.0 stack_path: docs/interact/search-and-query summary: Deletes the index -syntax: "FT.DROPINDEX index \n [DD]\n" +syntax: "FT.DROPINDEX index + [DD] +" syntax_fmt: FT.DROPINDEX index [DD] syntax_str: '[DD]' title: FT.DROPINDEX diff --git a/content/commands/ft.explain.md b/content/commands/ft.explain.md index 019545db2e..0332e21a86 100644 --- a/content/commands/ft.explain.md +++ b/content/commands/ft.explain.md @@ -18,7 +18,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -32,7 +31,9 @@ module: Search since: 1.0.0 stack_path: docs/interact/search-and-query summary: Returns the execution plan for a complex query -syntax: "FT.EXPLAIN index query \n [DIALECT dialect]\n" +syntax: "FT.EXPLAIN index query + [DIALECT dialect] +" syntax_fmt: "FT.EXPLAIN index query [DIALECT\_dialect]" syntax_str: "query [DIALECT\_dialect]" title: FT.EXPLAIN diff --git a/content/commands/ft.explaincli.md b/content/commands/ft.explaincli.md index 7fe20353db..56c879ebb6 100644 --- a/content/commands/ft.explaincli.md +++ b/content/commands/ft.explaincli.md @@ -18,7 +18,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -32,7 +31,9 @@ module: Search since: 1.0.0 stack_path: docs/interact/search-and-query summary: Returns the execution plan for a complex query -syntax: "FT.EXPLAINCLI index query \n [DIALECT dialect]\n" +syntax: "FT.EXPLAINCLI index query + [DIALECT dialect] +" syntax_fmt: "FT.EXPLAINCLI index query [DIALECT\_dialect]" syntax_str: "query [DIALECT\_dialect]" title: FT.EXPLAINCLI diff --git a/content/commands/ft.info.md b/content/commands/ft.info.md index 16e6f8e8a6..05d1b7cdf4 100644 --- a/content/commands/ft.info.md +++ b/content/commands/ft.info.md @@ -11,7 +11,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/ft.profile.md b/content/commands/ft.profile.md index cb59cc24e6..f025f7e404 100644 --- a/content/commands/ft.profile.md +++ b/content/commands/ft.profile.md @@ -30,7 +30,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/ft.search.md b/content/commands/ft.search.md index a6af70a406..1f2da26698 100644 --- a/content/commands/ft.search.md +++ b/content/commands/ft.search.md @@ -255,7 +255,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -270,7 +269,7 @@ history: - Deprecated `WITHPAYLOADS` and `PAYLOAD` arguments - - 2.6 - Deprecated `GEOFILTER` argument -- - "2.10" +- - '2.10' - Deprecated `FILTER` argument linkTitle: FT.SEARCH module: Search @@ -278,29 +277,68 @@ since: 1.0.0 stack_path: docs/interact/search-and-query summary: Searches the index with a textual query, returning either documents or just ids -syntax: "FT.SEARCH index query \n [NOCONTENT] \n [VERBATIM] \n [NOSTOPWORDS] \n [WITHSCORES]\ - \ \n [WITHPAYLOADS] \n [WITHSORTKEYS] \n [FILTER numeric_field min max [ FILTER\ - \ numeric_field min max ...]] \n [GEOFILTER geo_field lon lat radius m | km | mi\ - \ | ft [ GEOFILTER geo_field lon lat radius m | km | mi | ft ...]] \n [INKEYS count\ - \ key [key ...]] \n [INFIELDS count field [field ...]] \n [RETURN count identifier\ - \ [AS property] [ identifier [AS property] ...]] \n [SUMMARIZE [ FIELDS count field\ - \ [field ...]] [FRAGS num] [LEN fragsize] [SEPARATOR separator]] \n [HIGHLIGHT\ - \ [ FIELDS count field [field ...]] [ TAGS open close]] \n [SLOP slop] \n [TIMEOUT\ - \ timeout] \n [INORDER] \n [LANGUAGE language] \n [EXPANDER expander] \n [SCORER\ - \ scorer] \n [EXPLAINSCORE] \n [PAYLOAD payload] \n [SORTBY sortby [ ASC | DESC]\ - \ [WITHCOUNT]] \n [LIMIT offset num] \n [PARAMS nargs name value [ name value\ - \ ...]] \n [DIALECT dialect]\n" -syntax_fmt: "FT.SEARCH index query [NOCONTENT] [VERBATIM] [NOSTOPWORDS]\n [WITHSCORES]\ - \ [WITHPAYLOADS] [WITHSORTKEYS] [FILTER\_numeric_field\n min max [FILTER\_numeric_field\ - \ min max ...]] [GEOFILTER\_geo_field\n lon lat radius [GEOFILTER\_\ - geo_field lon lat\n radius ...]] [INKEYS\_count key [key ...]]\n\ - \ [INFIELDS\_count field [field ...]] [RETURN\_count identifier\n [AS\_property]\ - \ [identifier [AS\_property] ...]] [SUMMARIZE\n [FIELDS\_count field [field ...]]\ - \ [FRAGS\_num] [LEN\_fragsize]\n [SEPARATOR\_separator]] [HIGHLIGHT [FIELDS\_count\ - \ field [field ...]]\n [TAGS open close]] [SLOP\_slop] [TIMEOUT\_timeout] [INORDER]\n\ - \ [LANGUAGE\_language] [EXPANDER\_expander] [SCORER\_scorer]\n [EXPLAINSCORE]\ - \ [PAYLOAD\_payload] [SORTBY\_sortby [ASC | DESC]]\n [LIMIT offset num] [PARAMS\ - \ nargs name value [name value ...]]\n [DIALECT\_dialect]" +syntax: "FT.SEARCH index query + [NOCONTENT] + [VERBATIM] + [NOSTOPWORDS] +\ + \ [WITHSCORES] + [WITHPAYLOADS] + [WITHSORTKEYS] + [FILTER numeric_field\ + \ min max [ FILTER numeric_field min max ...]] + [GEOFILTER geo_field lon lat\ + \ radius m | km | mi | ft [ GEOFILTER geo_field lon lat radius m | km | mi | ft\ + \ ...]] + [INKEYS count key [key ...]] + [INFIELDS count field [field ...]]\ + \ + [RETURN count identifier [AS property] [ identifier [AS property] ...]] +\ + \ [SUMMARIZE [ FIELDS count field [field ...]] [FRAGS num] [LEN fragsize] [SEPARATOR\ + \ separator]] + [HIGHLIGHT [ FIELDS count field [field ...]] [ TAGS open close]]\ + \ + [SLOP slop] + [TIMEOUT timeout] + [INORDER] + [LANGUAGE language] +\ + \ [EXPANDER expander] + [SCORER scorer] + [EXPLAINSCORE] + [PAYLOAD payload]\ + \ + [SORTBY sortby [ ASC | DESC] [WITHCOUNT]] + [LIMIT offset num] + [PARAMS\ + \ nargs name value [ name value ...]] + [DIALECT dialect] +" +syntax_fmt: "FT.SEARCH index query [NOCONTENT] [VERBATIM] [NOSTOPWORDS] + [WITHSCORES]\ + \ [WITHPAYLOADS] [WITHSORTKEYS] [FILTER\_numeric_field + min max [FILTER\_numeric_field\ + \ min max ...]] [GEOFILTER\_geo_field + lon lat radius [GEOFILTER\_\ + geo_field lon lat + radius ...]] [INKEYS\_count key [key ...]] +\ + \ [INFIELDS\_count field [field ...]] [RETURN\_count identifier + [AS\_property]\ + \ [identifier [AS\_property] ...]] [SUMMARIZE + [FIELDS\_count field [field ...]]\ + \ [FRAGS\_num] [LEN\_fragsize] + [SEPARATOR\_separator]] [HIGHLIGHT [FIELDS\_count\ + \ field [field ...]] + [TAGS open close]] [SLOP\_slop] [TIMEOUT\_timeout] [INORDER] +\ + \ [LANGUAGE\_language] [EXPANDER\_expander] [SCORER\_scorer] + [EXPLAINSCORE]\ + \ [PAYLOAD\_payload] [SORTBY\_sortby [ASC | DESC]] + [LIMIT offset num] [PARAMS\ + \ nargs name value [name value ...]] + [DIALECT\_dialect]" syntax_str: "query [NOCONTENT] [VERBATIM] [NOSTOPWORDS] [WITHSCORES] [WITHPAYLOADS]\ \ [WITHSORTKEYS] [FILTER\_numeric_field min max [FILTER\_numeric_field min max ...]]\ \ [GEOFILTER\_geo_field lon lat radius [GEOFILTER\_geo_field\ diff --git a/content/commands/ft.spellcheck.md b/content/commands/ft.spellcheck.md index 9c0119146f..e2348ad1a2 100644 --- a/content/commands/ft.spellcheck.md +++ b/content/commands/ft.spellcheck.md @@ -42,7 +42,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -58,9 +57,14 @@ since: 1.4.0 stack_path: docs/interact/search-and-query summary: Performs spelling correction on a query, returning suggestions for misspelled terms -syntax: "FT.SPELLCHECK index query \n [DISTANCE distance] \n [TERMS INCLUDE | EXCLUDE\ - \ dictionary [terms [terms ...]]] \n [DIALECT dialect]\n" -syntax_fmt: "FT.SPELLCHECK index query [DISTANCE\_distance] [TERMS\_ dictionary [terms [terms ...]]] [DIALECT\_dialect]" syntax_str: "query [DISTANCE\_distance] [TERMS\_ dictionary [terms\ \ [terms ...]]] [DIALECT\_dialect]" diff --git a/content/commands/ft.sugadd.md b/content/commands/ft.sugadd.md index 95b3908863..1d00691646 100644 --- a/content/commands/ft.sugadd.md +++ b/content/commands/ft.sugadd.md @@ -27,7 +27,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) @@ -39,7 +38,10 @@ module: Search since: 1.0.0 stack_path: docs/interact/search-and-query summary: Adds a suggestion string to an auto-complete suggestion dictionary -syntax: "FT.SUGADD key string score \n [INCR] \n [PAYLOAD payload]\n" +syntax: "FT.SUGADD key string score + [INCR] + [PAYLOAD payload] +" syntax_fmt: "FT.SUGADD key string score [INCR] [PAYLOAD\_payload]" syntax_str: "string score [INCR] [PAYLOAD\_payload]" title: FT.SUGADD diff --git a/content/commands/ft.sugdel.md b/content/commands/ft.sugdel.md index a8e8b798e7..43c8ddc52e 100644 --- a/content/commands/ft.sugdel.md +++ b/content/commands/ft.sugdel.md @@ -14,7 +14,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/ft.sugget.md b/content/commands/ft.sugget.md index 091dfb22e6..c15c1b8f71 100644 --- a/content/commands/ft.sugget.md +++ b/content/commands/ft.sugget.md @@ -29,7 +29,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -43,8 +42,13 @@ module: Search since: 1.0.0 stack_path: docs/interact/search-and-query summary: Gets completion suggestions for a prefix -syntax: "FT.SUGGET key prefix \n [FUZZY] \n [WITHSCORES] \n [WITHPAYLOADS] \n \ - \ [MAX max]\n" +syntax: "FT.SUGGET key prefix + [FUZZY] + [WITHSCORES] + [WITHPAYLOADS] + \ + \ [MAX max] +" syntax_fmt: "FT.SUGGET key prefix [FUZZY] [WITHSCORES] [WITHPAYLOADS] [MAX\_max]" syntax_str: "prefix [FUZZY] [WITHSCORES] [WITHPAYLOADS] [MAX\_max]" title: FT.SUGGET diff --git a/content/commands/ft.suglen.md b/content/commands/ft.suglen.md index df3f491339..f724d513b9 100644 --- a/content/commands/ft.suglen.md +++ b/content/commands/ft.suglen.md @@ -11,7 +11,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/ft.syndump.md b/content/commands/ft.syndump.md index cdbc20b89c..570074c8b8 100644 --- a/content/commands/ft.syndump.md +++ b/content/commands/ft.syndump.md @@ -11,7 +11,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/ft.synupdate.md b/content/commands/ft.synupdate.md index 718a2d4c8e..143de716ae 100644 --- a/content/commands/ft.synupdate.md +++ b/content/commands/ft.synupdate.md @@ -20,7 +20,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -34,8 +33,11 @@ module: Search since: 1.2.0 stack_path: docs/interact/search-and-query summary: Creates or updates a synonym group with additional terms -syntax: "FT.SYNUPDATE index synonym_group_id \n [SKIPINITIALSCAN] term [term ...]\n" -syntax_fmt: "FT.SYNUPDATE index synonym_group_id [SKIPINITIALSCAN] term [term\n ...]" +syntax: "FT.SYNUPDATE index synonym_group_id + [SKIPINITIALSCAN] term [term ...] +" +syntax_fmt: "FT.SYNUPDATE index synonym_group_id [SKIPINITIALSCAN] term [term + ...]" syntax_str: synonym_group_id [SKIPINITIALSCAN] term [term ...] title: FT.SYNUPDATE --- diff --git a/content/commands/ft.tagvals.md b/content/commands/ft.tagvals.md index 4b3361c0c3..dd3e03bb1e 100644 --- a/content/commands/ft.tagvals.md +++ b/content/commands/ft.tagvals.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/function-delete.md b/content/commands/function-delete.md index 8c72cc730d..6258cf890b 100644 --- a/content/commands/function-delete.md +++ b/content/commands/function-delete.md @@ -15,7 +15,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/function-dump.md b/content/commands/function-dump.md index 7caf35533b..59419ce7f1 100644 --- a/content/commands/function-dump.md +++ b/content/commands/function-dump.md @@ -10,7 +10,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/function-flush.md b/content/commands/function-flush.md index 6904fea217..c3d14b3a3c 100644 --- a/content/commands/function-flush.md +++ b/content/commands/function-flush.md @@ -24,7 +24,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/function-help.md b/content/commands/function-help.md index 89da0ac212..ff1c977510 100644 --- a/content/commands/function-help.md +++ b/content/commands/function-help.md @@ -10,7 +10,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/function-kill.md b/content/commands/function-kill.md index bbb90c21b1..09ec179af5 100644 --- a/content/commands/function-kill.md +++ b/content/commands/function-kill.md @@ -10,7 +10,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/function-list.md b/content/commands/function-list.md index ab3c39e1e3..325ba19a60 100644 --- a/content/commands/function-list.md +++ b/content/commands/function-list.md @@ -21,7 +21,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/function-load.md b/content/commands/function-load.md index 69765c5d7c..e644e8a08f 100644 --- a/content/commands/function-load.md +++ b/content/commands/function-load.md @@ -20,7 +20,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/function-restore.md b/content/commands/function-restore.md index 26c50cc436..6047faed1a 100644 --- a/content/commands/function-restore.md +++ b/content/commands/function-restore.md @@ -31,7 +31,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/function-stats.md b/content/commands/function-stats.md index 599c3a15b8..78b805fad9 100644 --- a/content/commands/function-stats.md +++ b/content/commands/function-stats.md @@ -10,7 +10,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/function.md b/content/commands/function.md index f44e79f594..5a3eff5022 100644 --- a/content/commands/function.md +++ b/content/commands/function.md @@ -9,7 +9,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: Depends on subcommand. diff --git a/content/commands/geoadd.md b/content/commands/geoadd.md index 3ec6b92f2c..621db9c16e 100644 --- a/content/commands/geoadd.md +++ b/content/commands/geoadd.md @@ -48,7 +48,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -80,7 +79,8 @@ linkTitle: GEOADD since: 3.2.0 summary: Adds one or more members to a geospatial index. The key is created if it doesn't exist. -syntax_fmt: "GEOADD key [NX | XX] [CH] longitude latitude member [longitude\n latitude\ +syntax_fmt: "GEOADD key [NX | XX] [CH] longitude latitude member [longitude + latitude\ \ member ...]" syntax_str: '[NX | XX] [CH] longitude latitude member [longitude latitude member ...]' title: GEOADD diff --git a/content/commands/geodist.md b/content/commands/geodist.md index 2ecdc5f43e..da9bc826b2 100644 --- a/content/commands/geodist.md +++ b/content/commands/geodist.md @@ -42,7 +42,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/geohash.md b/content/commands/geohash.md index d412fb779e..bee60568b2 100644 --- a/content/commands/geohash.md +++ b/content/commands/geohash.md @@ -21,7 +21,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/geopos.md b/content/commands/geopos.md index e2afb8c936..4788645c60 100644 --- a/content/commands/geopos.md +++ b/content/commands/geopos.md @@ -21,7 +21,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/georadius.md b/content/commands/georadius.md index 4f8415c52c..ff9555bb1b 100644 --- a/content/commands/georadius.md +++ b/content/commands/georadius.md @@ -99,7 +99,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -166,8 +165,10 @@ replaced_by: '[`GEOSEARCH`]({{< relref "/commands/geosearch" >}}) and [`GEOSEARC since: 3.2.0 summary: Queries a geospatial index for members within a distance from a coordinate, optionally stores the result. -syntax_fmt: "GEORADIUS key longitude latitude radius \n [WITHCOORD]\ - \ [WITHDIST] [WITHHASH] [COUNT\_count [ANY]] [ASC | DESC]\n [STORE\_key | STOREDIST\_\ +syntax_fmt: "GEORADIUS key longitude latitude radius + [WITHCOORD]\ + \ [WITHDIST] [WITHHASH] [COUNT\_count [ANY]] [ASC | DESC] + [STORE\_key | STOREDIST\_\ key]" syntax_str: "longitude latitude radius [WITHCOORD] [WITHDIST] [WITHHASH]\ \ [COUNT\_count [ANY]] [ASC | DESC] [STORE\_key | STOREDIST\_key]" diff --git a/content/commands/georadius_ro.md b/content/commands/georadius_ro.md index e4cad61a8e..3257ddc6b8 100644 --- a/content/commands/georadius_ro.md +++ b/content/commands/georadius_ro.md @@ -85,7 +85,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -124,7 +123,8 @@ replaced_by: '[`GEOSEARCH`]({{< relref "/commands/geosearch" >}}) with the `BYRA since: 3.2.10 summary: Returns members from a geospatial index that are within a distance from a coordinate. -syntax_fmt: "GEORADIUS_RO key longitude latitude radius \n [WITHCOORD]\ +syntax_fmt: "GEORADIUS_RO key longitude latitude radius + [WITHCOORD]\ \ [WITHDIST] [WITHHASH] [COUNT\_count [ANY]] [ASC | DESC]" syntax_str: "longitude latitude radius [WITHCOORD] [WITHDIST] [WITHHASH]\ \ [COUNT\_count [ANY]] [ASC | DESC]" diff --git a/content/commands/georadiusbymember.md b/content/commands/georadiusbymember.md index bc26121b80..186b860d1f 100644 --- a/content/commands/georadiusbymember.md +++ b/content/commands/georadiusbymember.md @@ -95,7 +95,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -162,8 +161,10 @@ replaced_by: '[`GEOSEARCH`]({{< relref "/commands/geosearch" >}}) and [`GEOSEARC since: 3.2.0 summary: Queries a geospatial index for members within a distance from a member, optionally stores the result. -syntax_fmt: "GEORADIUSBYMEMBER key member radius [WITHCOORD]\n\ - \ [WITHDIST] [WITHHASH] [COUNT\_count [ANY]] [ASC | DESC] [STORE\_key\n | STOREDIST\_\ +syntax_fmt: "GEORADIUSBYMEMBER key member radius [WITHCOORD] +\ + \ [WITHDIST] [WITHHASH] [COUNT\_count [ANY]] [ASC | DESC] [STORE\_key + | STOREDIST\_\ key]" syntax_str: "member radius [WITHCOORD] [WITHDIST] [WITHHASH] [COUNT\_\ count [ANY]] [ASC | DESC] [STORE\_key | STOREDIST\_key]" diff --git a/content/commands/georadiusbymember_ro.md b/content/commands/georadiusbymember_ro.md index e2724a4680..f4ebaf74e7 100644 --- a/content/commands/georadiusbymember_ro.md +++ b/content/commands/georadiusbymember_ro.md @@ -81,7 +81,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -120,7 +119,8 @@ replaced_by: '[`GEOSEARCH`]({{< relref "/commands/geosearch" >}}) with the `BYRA since: 3.2.10 summary: Returns members from a geospatial index that are within a distance from a member. -syntax_fmt: "GEORADIUSBYMEMBER_RO key member radius \n [WITHCOORD]\ +syntax_fmt: "GEORADIUSBYMEMBER_RO key member radius + [WITHCOORD]\ \ [WITHDIST] [WITHHASH] [COUNT\_count [ANY]] [ASC | DESC]" syntax_str: "member radius [WITHCOORD] [WITHDIST] [WITHHASH] [COUNT\_\ count [ANY]] [ASC | DESC]" diff --git a/content/commands/geosearch.md b/content/commands/geosearch.md index c9144addd8..236a81c171 100644 --- a/content/commands/geosearch.md +++ b/content/commands/geosearch.md @@ -131,7 +131,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -161,9 +160,12 @@ key_specs: linkTitle: GEOSEARCH since: 6.2.0 summary: Queries a geospatial index for members inside an area of a box or a circle. -syntax_fmt: "GEOSEARCH key \n\ - \ | BYBOX\_width height > [ASC | DESC] [COUNT\_count [ANY]] [WITHCOORD] [WITHDIST]\n [WITHHASH]" +syntax_fmt: "GEOSEARCH key +\ + \ | BYBOX\_width height > [ASC | DESC] [COUNT\_count [ANY]] [WITHCOORD] [WITHDIST] + [WITHHASH]" syntax_str: " | BYBOX\_width height > [ASC | DESC] [COUNT\_\ count [ANY]] [WITHCOORD] [WITHDIST] [WITHHASH]" diff --git a/content/commands/geosearchstore.md b/content/commands/geosearchstore.md index 5b89bae8bc..c00bde9f66 100644 --- a/content/commands/geosearchstore.md +++ b/content/commands/geosearchstore.md @@ -125,7 +125,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -170,9 +169,12 @@ linkTitle: GEOSEARCHSTORE since: 6.2.0 summary: Queries a geospatial index for members inside an area of a box or a circle, optionally stores the result. -syntax_fmt: "GEOSEARCHSTORE destination source \n | BYBOX\_width height\ - \ > [ASC | DESC] [COUNT\_count\n [ANY]] [STOREDIST]" +syntax_fmt: "GEOSEARCHSTORE destination source + | BYBOX\_width height\ + \ > [ASC | DESC] [COUNT\_count + [ANY]] [STOREDIST]" syntax_str: "source | BYBOX\_width height > [ASC | DESC]\ \ [COUNT\_count [ANY]] [STOREDIST]" diff --git a/content/commands/get.md b/content/commands/get.md index e0a31d7b3a..826c604f56 100644 --- a/content/commands/get.md +++ b/content/commands/get.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/getbit.md b/content/commands/getbit.md index fad569aa47..ee9fa725a1 100644 --- a/content/commands/getbit.md +++ b/content/commands/getbit.md @@ -19,7 +19,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/getdel.md b/content/commands/getdel.md index 8b9a006e6e..117bb98e88 100644 --- a/content/commands/getdel.md +++ b/content/commands/getdel.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/getex.md b/content/commands/getex.md index 27511717ae..9e26669d05 100644 --- a/content/commands/getex.md +++ b/content/commands/getex.md @@ -40,7 +40,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -68,7 +67,8 @@ key_specs: linkTitle: GETEX since: 6.2.0 summary: Returns the string value of a key after setting its expiration time. -syntax_fmt: "GETEX key [EX\_seconds | PX\_milliseconds | EXAT\_unix-time-seconds |\n\ +syntax_fmt: "GETEX key [EX\_seconds | PX\_milliseconds | EXAT\_unix-time-seconds | +\ \ PXAT\_unix-time-milliseconds | PERSIST]" syntax_str: "[EX\_seconds | PX\_milliseconds | EXAT\_unix-time-seconds | PXAT\_unix-time-milliseconds\ \ | PERSIST]" diff --git a/content/commands/getrange.md b/content/commands/getrange.md index 274fc4a05d..d097e717ec 100644 --- a/content/commands/getrange.md +++ b/content/commands/getrange.md @@ -22,7 +22,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/getset.md b/content/commands/getset.md index 269f8e0557..41314769ed 100644 --- a/content/commands/getset.md +++ b/content/commands/getset.md @@ -19,7 +19,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/hdel.md b/content/commands/hdel.md index e2e0a9e407..a78be40347 100644 --- a/content/commands/hdel.md +++ b/content/commands/hdel.md @@ -20,7 +20,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/hello.md b/content/commands/hello.md index fbcc1ae417..52db82fe4b 100644 --- a/content/commands/hello.md +++ b/content/commands/hello.md @@ -34,7 +34,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/hexists.md b/content/commands/hexists.md index 9f52bb5943..b3100e4093 100644 --- a/content/commands/hexists.md +++ b/content/commands/hexists.md @@ -19,7 +19,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/hexpire.md b/content/commands/hexpire.md index 0400e8a0a0..7b42935f77 100644 --- a/content/commands/hexpire.md +++ b/content/commands/hexpire.md @@ -50,7 +50,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -77,7 +76,8 @@ key_specs: linkTitle: HEXPIRE since: 7.4.0 summary: Set expiry for hash field using relative time to expire (seconds) -syntax_fmt: "HEXPIRE key seconds [NX | XX | GT | LT] FIELDS\_numfields field\n [field\ +syntax_fmt: "HEXPIRE key seconds [NX | XX | GT | LT] FIELDS\_numfields field + [field\ \ ...]" syntax_str: "seconds [NX | XX | GT | LT] FIELDS\_numfields field [field ...]" title: HEXPIRE diff --git a/content/commands/hexpireat.md b/content/commands/hexpireat.md index c76bab82bd..1b7f059268 100644 --- a/content/commands/hexpireat.md +++ b/content/commands/hexpireat.md @@ -50,7 +50,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -77,7 +76,8 @@ key_specs: linkTitle: HEXPIREAT since: 7.4.0 summary: Set expiry for hash field using an absolute Unix timestamp (seconds) -syntax_fmt: "HEXPIREAT key unix-time-seconds [NX | XX | GT | LT] FIELDS\_numfields\n\ +syntax_fmt: "HEXPIREAT key unix-time-seconds [NX | XX | GT | LT] FIELDS\_numfields +\ \ field [field ...]" syntax_str: "unix-time-seconds [NX | XX | GT | LT] FIELDS\_numfields field [field\ \ ...]" diff --git a/content/commands/hexpiretime.md b/content/commands/hexpiretime.md index 86b2ea2caf..d973f2390b 100644 --- a/content/commands/hexpiretime.md +++ b/content/commands/hexpiretime.md @@ -27,7 +27,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/hget.md b/content/commands/hget.md index a9d60ef80f..a22b24846f 100644 --- a/content/commands/hget.md +++ b/content/commands/hget.md @@ -19,7 +19,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/hgetall.md b/content/commands/hgetall.md index 44e15c5068..fca75beab9 100644 --- a/content/commands/hgetall.md +++ b/content/commands/hgetall.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/hgetdel.md b/content/commands/hgetdel.md index db25b9462f..27c4ec15ca 100644 --- a/content/commands/hgetdel.md +++ b/content/commands/hgetdel.md @@ -27,7 +27,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/hgetex.md b/content/commands/hgetex.md index 9bbcb3d807..0bd8fe34fd 100644 --- a/content/commands/hgetex.md +++ b/content/commands/hgetex.md @@ -51,7 +51,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -82,7 +81,9 @@ since: 8.0.0 summary: Get the value of one or more fields of a given hash key, and optionally set their expiration. syntax_fmt: "HGETEX key [EX\_seconds | PX\_milliseconds | EXAT\_unix-time-seconds\ - \ |\n PXAT\_unix-time-milliseconds | PERSIST] FIELDS\_numfields field\n [field\ + \ | + PXAT\_unix-time-milliseconds | PERSIST] FIELDS\_numfields field + [field\ \ ...]" syntax_str: "[EX\_seconds | PX\_milliseconds | EXAT\_unix-time-seconds | PXAT\_unix-time-milliseconds\ \ | PERSIST] FIELDS\_numfields field [field ...]" diff --git a/content/commands/hincrby.md b/content/commands/hincrby.md index ac59549b7e..7bbf44be84 100644 --- a/content/commands/hincrby.md +++ b/content/commands/hincrby.md @@ -22,7 +22,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/hincrbyfloat.md b/content/commands/hincrbyfloat.md index e9bf2b4500..81b6431b7d 100644 --- a/content/commands/hincrbyfloat.md +++ b/content/commands/hincrbyfloat.md @@ -22,7 +22,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/hkeys.md b/content/commands/hkeys.md index 7dfa154b9b..27fe9527dd 100644 --- a/content/commands/hkeys.md +++ b/content/commands/hkeys.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/hlen.md b/content/commands/hlen.md index 0ca5f918ab..e92bf020d6 100644 --- a/content/commands/hlen.md +++ b/content/commands/hlen.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/hmget.md b/content/commands/hmget.md index 982dfeaf74..ca3a549840 100644 --- a/content/commands/hmget.md +++ b/content/commands/hmget.md @@ -20,7 +20,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/hmset.md b/content/commands/hmset.md index bed676ed79..d64b4ef488 100644 --- a/content/commands/hmset.md +++ b/content/commands/hmset.md @@ -26,7 +26,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/hpersist.md b/content/commands/hpersist.md index 4cc8485861..7ddf670643 100644 --- a/content/commands/hpersist.md +++ b/content/commands/hpersist.md @@ -27,7 +27,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/hpexpire.md b/content/commands/hpexpire.md index 4001a872bc..b74a3c461d 100644 --- a/content/commands/hpexpire.md +++ b/content/commands/hpexpire.md @@ -50,7 +50,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -77,7 +76,8 @@ key_specs: linkTitle: HPEXPIRE since: 7.4.0 summary: Set expiry for hash field using relative time to expire (milliseconds) -syntax_fmt: "HPEXPIRE key milliseconds [NX | XX | GT | LT] FIELDS\_numfields field\n\ +syntax_fmt: "HPEXPIRE key milliseconds [NX | XX | GT | LT] FIELDS\_numfields field +\ \ [field ...]" syntax_str: "milliseconds [NX | XX | GT | LT] FIELDS\_numfields field [field ...]" title: HPEXPIRE diff --git a/content/commands/hpexpireat.md b/content/commands/hpexpireat.md index 1f68a352c8..634b9a10d6 100644 --- a/content/commands/hpexpireat.md +++ b/content/commands/hpexpireat.md @@ -50,7 +50,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -77,7 +76,8 @@ key_specs: linkTitle: HPEXPIREAT since: 7.4.0 summary: Set expiry for hash field using an absolute Unix timestamp (milliseconds) -syntax_fmt: "HPEXPIREAT key unix-time-milliseconds [NX | XX | GT | LT]\n FIELDS\_\ +syntax_fmt: "HPEXPIREAT key unix-time-milliseconds [NX | XX | GT | LT] + FIELDS\_\ numfields field [field ...]" syntax_str: "unix-time-milliseconds [NX | XX | GT | LT] FIELDS\_numfields field [field\ \ ...]" diff --git a/content/commands/hpexpiretime.md b/content/commands/hpexpiretime.md index dbae3e3943..858bdf7a03 100644 --- a/content/commands/hpexpiretime.md +++ b/content/commands/hpexpiretime.md @@ -27,7 +27,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/hpttl.md b/content/commands/hpttl.md index ac3ac228d5..a615cfda8e 100644 --- a/content/commands/hpttl.md +++ b/content/commands/hpttl.md @@ -27,7 +27,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/hrandfield.md b/content/commands/hrandfield.md index fde37d2c76..cf033e4c92 100644 --- a/content/commands/hrandfield.md +++ b/content/commands/hrandfield.md @@ -28,7 +28,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/hscan.md b/content/commands/hscan.md index e0fb6fd9a8..a6171867fd 100644 --- a/content/commands/hscan.md +++ b/content/commands/hscan.md @@ -34,7 +34,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/hset.md b/content/commands/hset.md index 1a0d6a3c61..e3418e2a7e 100644 --- a/content/commands/hset.md +++ b/content/commands/hset.md @@ -26,7 +26,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/hsetex.md b/content/commands/hsetex.md index d0e54459c4..e9ec6767e9 100644 --- a/content/commands/hsetex.md +++ b/content/commands/hsetex.md @@ -69,7 +69,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -98,8 +97,10 @@ linkTitle: HSETEX since: 8.0.0 summary: Set the value of one or more fields of a given hash key, and optionally set their expiration. -syntax_fmt: "HSETEX key [FNX | FXX] [EX\_seconds | PX\_milliseconds |\n EXAT\_unix-time-seconds\ - \ | PXAT\_unix-time-milliseconds | KEEPTTL]\n FIELDS\_numfields field value [field\ +syntax_fmt: "HSETEX key [FNX | FXX] [EX\_seconds | PX\_milliseconds | + EXAT\_unix-time-seconds\ + \ | PXAT\_unix-time-milliseconds | KEEPTTL] + FIELDS\_numfields field value [field\ \ value ...]" syntax_str: "[FNX | FXX] [EX\_seconds | PX\_milliseconds | EXAT\_unix-time-seconds\ \ | PXAT\_unix-time-milliseconds | KEEPTTL] FIELDS\_numfields field value [field\ diff --git a/content/commands/hsetnx.md b/content/commands/hsetnx.md index 5f35168557..5870b98417 100644 --- a/content/commands/hsetnx.md +++ b/content/commands/hsetnx.md @@ -22,7 +22,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/hstrlen.md b/content/commands/hstrlen.md index 96d6f5f7b9..87e63dc156 100644 --- a/content/commands/hstrlen.md +++ b/content/commands/hstrlen.md @@ -19,7 +19,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/httl.md b/content/commands/httl.md index 2124103336..9f7f74b1aa 100644 --- a/content/commands/httl.md +++ b/content/commands/httl.md @@ -27,7 +27,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/hvals.md b/content/commands/hvals.md index 4f81260b87..41b9fecf14 100644 --- a/content/commands/hvals.md +++ b/content/commands/hvals.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/incr.md b/content/commands/incr.md index 4f83355ce8..c2f5123892 100644 --- a/content/commands/incr.md +++ b/content/commands/incr.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/incrby.md b/content/commands/incrby.md index b7fba98084..3d3addc38d 100644 --- a/content/commands/incrby.md +++ b/content/commands/incrby.md @@ -19,7 +19,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/incrbyfloat.md b/content/commands/incrbyfloat.md index 1b1bf7cfd9..71985bef95 100644 --- a/content/commands/incrbyfloat.md +++ b/content/commands/incrbyfloat.md @@ -19,7 +19,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/info.md b/content/commands/info.md index b05e27e485..61643d8f54 100644 --- a/content/commands/info.md +++ b/content/commands/info.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/json.arrappend.md b/content/commands/json.arrappend.md index d2def7f601..0447c4dae9 100644 --- a/content/commands/json.arrappend.md +++ b/content/commands/json.arrappend.md @@ -19,7 +19,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) when path is evaluated to a single value, O(N) when path is evaluated @@ -35,7 +34,7 @@ stack_path: docs/data-types/json summary: Append one or more JSON values into the array at path after the last element in it. syntax_fmt: JSON.ARRAPPEND key path value [value ...] -syntax_str: 'path value [value ...]' +syntax_str: path value [value ...] title: JSON.ARRAPPEND --- Append the JSON values into the array at `path` after the last element in it. diff --git a/content/commands/json.arrindex.md b/content/commands/json.arrindex.md index 1d7652ac2e..fb75649628 100644 --- a/content/commands/json.arrindex.md +++ b/content/commands/json.arrindex.md @@ -26,7 +26,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(N) when path is evaluated to a single value where N is the size of the diff --git a/content/commands/json.arrinsert.md b/content/commands/json.arrinsert.md index 51da3bf27b..a6ecd96339 100644 --- a/content/commands/json.arrinsert.md +++ b/content/commands/json.arrinsert.md @@ -20,7 +20,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(N) when path is evaluated to a single value where N is the size of the diff --git a/content/commands/json.arrlen.md b/content/commands/json.arrlen.md index 1ace273dbc..4c1226247d 100644 --- a/content/commands/json.arrlen.md +++ b/content/commands/json.arrlen.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) where path is evaluated to a single value, O(N) where path is evaluated diff --git a/content/commands/json.arrpop.md b/content/commands/json.arrpop.md index f4d1102017..db4890a295 100644 --- a/content/commands/json.arrpop.md +++ b/content/commands/json.arrpop.md @@ -22,7 +22,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(N) when path is evaluated to a single value where N is the size of the diff --git a/content/commands/json.arrtrim.md b/content/commands/json.arrtrim.md index fe2187f51f..7057cac295 100644 --- a/content/commands/json.arrtrim.md +++ b/content/commands/json.arrtrim.md @@ -19,7 +19,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(N) when path is evaluated to a single value where N is the size of the diff --git a/content/commands/json.clear.md b/content/commands/json.clear.md index 35ff1a9353..1f65b8e9ec 100644 --- a/content/commands/json.clear.md +++ b/content/commands/json.clear.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(N) when path is evaluated to a single value where N is the size of the diff --git a/content/commands/json.debug-help.md b/content/commands/json.debug-help.md index a32b5a8733..b10684c33d 100644 --- a/content/commands/json.debug-help.md +++ b/content/commands/json.debug-help.md @@ -6,7 +6,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: N/A diff --git a/content/commands/json.debug-memory.md b/content/commands/json.debug-memory.md index fb4a17fb3b..b2b504ba1c 100644 --- a/content/commands/json.debug-memory.md +++ b/content/commands/json.debug-memory.md @@ -15,7 +15,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(N) when path is evaluated to a single value, where N is the size of diff --git a/content/commands/json.debug.md b/content/commands/json.debug.md index 637e5b4c71..b8e2cdf20d 100644 --- a/content/commands/json.debug.md +++ b/content/commands/json.debug.md @@ -6,7 +6,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: N/A diff --git a/content/commands/json.del.md b/content/commands/json.del.md index 2498ee7e3d..6115f497e9 100644 --- a/content/commands/json.del.md +++ b/content/commands/json.del.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(N) when path is evaluated to a single value where N is the size of the diff --git a/content/commands/json.forget.md b/content/commands/json.forget.md index 59f4b5ce68..ad031044cf 100644 --- a/content/commands/json.forget.md +++ b/content/commands/json.forget.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(N) when path is evaluated to a single value where N is the size of the diff --git a/content/commands/json.get.md b/content/commands/json.get.md index 6c605d4660..f05d227aa3 100644 --- a/content/commands/json.get.md +++ b/content/commands/json.get.md @@ -29,7 +29,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(N) when path is evaluated to a single value where N is the size of the @@ -43,7 +42,8 @@ module: JSON since: 1.0.0 stack_path: docs/data-types/json summary: Gets the value at one or more paths in JSON serialized form -syntax_fmt: "JSON.GET key [INDENT\_indent] [NEWLINE\_newline] [SPACE\_space] [path\n\ +syntax_fmt: "JSON.GET key [INDENT\_indent] [NEWLINE\_newline] [SPACE\_space] [path +\ \ [path ...]]" syntax_str: "[INDENT\_indent] [NEWLINE\_newline] [SPACE\_space] [path [path ...]]" title: JSON.GET diff --git a/content/commands/json.merge.md b/content/commands/json.merge.md index 89bca76ad8..f052bc074f 100644 --- a/content/commands/json.merge.md +++ b/content/commands/json.merge.md @@ -17,7 +17,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(M+N) when path is evaluated to a single value where M is the size of diff --git a/content/commands/json.mget.md b/content/commands/json.mget.md index 2684a5b518..baef17a1df 100644 --- a/content/commands/json.mget.md +++ b/content/commands/json.mget.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(M*N) when path is evaluated to a single value where M is the number diff --git a/content/commands/json.mset.md b/content/commands/json.mset.md index 0907cdccc5..225e4b32a4 100644 --- a/content/commands/json.mset.md +++ b/content/commands/json.mset.md @@ -21,7 +21,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(K*(M+N)) where k is the number of keys in the command, when path is diff --git a/content/commands/json.numincrby.md b/content/commands/json.numincrby.md index b2acf5d970..3452a1317b 100644 --- a/content/commands/json.numincrby.md +++ b/content/commands/json.numincrby.md @@ -17,7 +17,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) when path is evaluated to a single value, O(N) when path is evaluated diff --git a/content/commands/json.nummultby.md b/content/commands/json.nummultby.md index a3350a8ea6..a066861e51 100644 --- a/content/commands/json.nummultby.md +++ b/content/commands/json.nummultby.md @@ -17,7 +17,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) when path is evaluated to a single value, O(N) when path is evaluated diff --git a/content/commands/json.objkeys.md b/content/commands/json.objkeys.md index 06eabe7401..4a214d98fe 100644 --- a/content/commands/json.objkeys.md +++ b/content/commands/json.objkeys.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(N) when path is evaluated to a single value, where N is the number of diff --git a/content/commands/json.objlen.md b/content/commands/json.objlen.md index c7de69f21c..991060c21e 100644 --- a/content/commands/json.objlen.md +++ b/content/commands/json.objlen.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) when path is evaluated to a single value, O(N) when path is evaluated diff --git a/content/commands/json.resp.md b/content/commands/json.resp.md index 883ecf21b5..6ea5e3b788 100644 --- a/content/commands/json.resp.md +++ b/content/commands/json.resp.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(N) when path is evaluated to a single value, where N is the size of diff --git a/content/commands/json.set.md b/content/commands/json.set.md index 303c030d4d..21487c1621 100644 --- a/content/commands/json.set.md +++ b/content/commands/json.set.md @@ -27,7 +27,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(M+N) when path is evaluated to a single value where M is the size of diff --git a/content/commands/json.strappend.md b/content/commands/json.strappend.md index 68c4ead7a6..f91af9bf0f 100644 --- a/content/commands/json.strappend.md +++ b/content/commands/json.strappend.md @@ -18,7 +18,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) when path is evaluated to a single value, O(N) when path is evaluated diff --git a/content/commands/json.strlen.md b/content/commands/json.strlen.md index 4f9df386c7..746e4e4799 100644 --- a/content/commands/json.strlen.md +++ b/content/commands/json.strlen.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) when path is evaluated to a single value, O(N) when path is evaluated diff --git a/content/commands/json.toggle.md b/content/commands/json.toggle.md index e5cb0fa535..2b89d8b403 100644 --- a/content/commands/json.toggle.md +++ b/content/commands/json.toggle.md @@ -15,7 +15,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) when path is evaluated to a single value, O(N) when path is evaluated diff --git a/content/commands/json.type.md b/content/commands/json.type.md index 5dd7c3e265..f7f004bba7 100644 --- a/content/commands/json.type.md +++ b/content/commands/json.type.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) when path is evaluated to a single value, O(N) when path is evaluated diff --git a/content/commands/keys.md b/content/commands/keys.md index 62f54175ca..fae19bef62 100644 --- a/content/commands/keys.md +++ b/content/commands/keys.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/lastsave.md b/content/commands/lastsave.md index 3d0324b539..9dc9127419 100644 --- a/content/commands/lastsave.md +++ b/content/commands/lastsave.md @@ -11,7 +11,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/latency-doctor.md b/content/commands/latency-doctor.md index d38899da3a..ed6f2a1689 100644 --- a/content/commands/latency-doctor.md +++ b/content/commands/latency-doctor.md @@ -11,7 +11,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/latency-graph.md b/content/commands/latency-graph.md index 842b1d1c04..38fb84dcc7 100644 --- a/content/commands/latency-graph.md +++ b/content/commands/latency-graph.md @@ -15,7 +15,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/latency-help.md b/content/commands/latency-help.md index c312a8202d..1156af5d6f 100644 --- a/content/commands/latency-help.md +++ b/content/commands/latency-help.md @@ -9,7 +9,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/latency-histogram.md b/content/commands/latency-histogram.md index 4bd6923e99..6d6d1a5194 100644 --- a/content/commands/latency-histogram.md +++ b/content/commands/latency-histogram.md @@ -17,7 +17,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/latency-history.md b/content/commands/latency-history.md index d357d4129f..6d4906e545 100644 --- a/content/commands/latency-history.md +++ b/content/commands/latency-history.md @@ -15,7 +15,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/latency-latest.md b/content/commands/latency-latest.md index 1531128913..9fd0723885 100644 --- a/content/commands/latency-latest.md +++ b/content/commands/latency-latest.md @@ -11,7 +11,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/latency-reset.md b/content/commands/latency-reset.md index 482b2d5621..992624ef7b 100644 --- a/content/commands/latency-reset.md +++ b/content/commands/latency-reset.md @@ -17,7 +17,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/latency.md b/content/commands/latency.md index 314cac54ef..d1045a02cc 100644 --- a/content/commands/latency.md +++ b/content/commands/latency.md @@ -9,7 +9,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: Depends on subcommand. diff --git a/content/commands/lcs.md b/content/commands/lcs.md index 31f74e62f9..318e6e732f 100644 --- a/content/commands/lcs.md +++ b/content/commands/lcs.md @@ -40,7 +40,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/lindex.md b/content/commands/lindex.md index 9c56da7c2a..b4526f664a 100644 --- a/content/commands/lindex.md +++ b/content/commands/lindex.md @@ -19,7 +19,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/linsert.md b/content/commands/linsert.md index 22057ef59c..daf5790fe5 100644 --- a/content/commands/linsert.md +++ b/content/commands/linsert.md @@ -33,7 +33,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/llen.md b/content/commands/llen.md index 7f635be1f9..9ed73a40a8 100644 --- a/content/commands/llen.md +++ b/content/commands/llen.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/lmove.md b/content/commands/lmove.md index fbe8222265..338e51a71e 100644 --- a/content/commands/lmove.md +++ b/content/commands/lmove.md @@ -42,7 +42,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/lmpop.md b/content/commands/lmpop.md index 81aab14d8e..1f911b911d 100644 --- a/content/commands/lmpop.md +++ b/content/commands/lmpop.md @@ -36,7 +36,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/lolwut.md b/content/commands/lolwut.md index 1c8ec6c1e3..813b1c66a4 100644 --- a/content/commands/lolwut.md +++ b/content/commands/lolwut.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/lpop.md b/content/commands/lpop.md index 52b05f596a..7558170678 100644 --- a/content/commands/lpop.md +++ b/content/commands/lpop.md @@ -21,7 +21,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/lpos.md b/content/commands/lpos.md index a92362e0b8..63fa36040a 100644 --- a/content/commands/lpos.md +++ b/content/commands/lpos.md @@ -34,7 +34,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/lpush.md b/content/commands/lpush.md index 7da4f44a42..ef493512ed 100644 --- a/content/commands/lpush.md +++ b/content/commands/lpush.md @@ -20,7 +20,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/lpushx.md b/content/commands/lpushx.md index 4e5f4f8181..c234808fe4 100644 --- a/content/commands/lpushx.md +++ b/content/commands/lpushx.md @@ -20,7 +20,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/lrange.md b/content/commands/lrange.md index 3d373da417..01cb998d45 100644 --- a/content/commands/lrange.md +++ b/content/commands/lrange.md @@ -22,7 +22,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/lrem.md b/content/commands/lrem.md index a8460557bc..a15a58425a 100644 --- a/content/commands/lrem.md +++ b/content/commands/lrem.md @@ -22,7 +22,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/lset.md b/content/commands/lset.md index 549e4e4564..cd0fe268c2 100644 --- a/content/commands/lset.md +++ b/content/commands/lset.md @@ -22,7 +22,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/ltrim.md b/content/commands/ltrim.md index a595e131c6..3cad56cb37 100644 --- a/content/commands/ltrim.md +++ b/content/commands/ltrim.md @@ -22,7 +22,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/memory-doctor.md b/content/commands/memory-doctor.md index 7aeb9e0a95..1b986136d0 100644 --- a/content/commands/memory-doctor.md +++ b/content/commands/memory-doctor.md @@ -9,7 +9,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/memory-help.md b/content/commands/memory-help.md index 89aaea7de5..5f7d92fa3e 100644 --- a/content/commands/memory-help.md +++ b/content/commands/memory-help.md @@ -9,7 +9,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/memory-malloc-stats.md b/content/commands/memory-malloc-stats.md index a82f0fc79a..f698c08a3c 100644 --- a/content/commands/memory-malloc-stats.md +++ b/content/commands/memory-malloc-stats.md @@ -9,7 +9,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: Depends on how much memory is allocated, could be slow diff --git a/content/commands/memory-purge.md b/content/commands/memory-purge.md index b2bfd5e47d..b41a5fe3e3 100644 --- a/content/commands/memory-purge.md +++ b/content/commands/memory-purge.md @@ -9,7 +9,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: Depends on how much memory is allocated, could be slow diff --git a/content/commands/memory-stats.md b/content/commands/memory-stats.md index ca537ad904..e12cee080f 100644 --- a/content/commands/memory-stats.md +++ b/content/commands/memory-stats.md @@ -9,7 +9,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/memory-usage.md b/content/commands/memory-usage.md index 50b6f55900..b75b22530b 100644 --- a/content/commands/memory-usage.md +++ b/content/commands/memory-usage.md @@ -20,7 +20,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/memory.md b/content/commands/memory.md index 9a1d52e536..9b4d36983b 100644 --- a/content/commands/memory.md +++ b/content/commands/memory.md @@ -9,7 +9,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: Depends on subcommand. diff --git a/content/commands/mget.md b/content/commands/mget.md index 0a30f2bec0..100c1f7e18 100644 --- a/content/commands/mget.md +++ b/content/commands/mget.md @@ -17,7 +17,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/migrate.md b/content/commands/migrate.md index c690a38baa..9cfe12c8af 100644 --- a/content/commands/migrate.md +++ b/content/commands/migrate.md @@ -76,7 +76,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -131,7 +130,8 @@ key_specs: linkTitle: MIGRATE since: 2.6.0 summary: Atomically transfers a key from one Redis instance to another. -syntax_fmt: "MIGRATE host port destination-db timeout [COPY] [REPLACE]\n\ +syntax_fmt: "MIGRATE host port destination-db timeout [COPY] [REPLACE] +\ \ [AUTH\_password | AUTH2\_username password] [KEYS\_key [key ...]]" syntax_str: "port destination-db timeout [COPY] [REPLACE] [AUTH\_password\ \ | AUTH2\_username password] [KEYS\_key [key ...]]" diff --git a/content/commands/module-help.md b/content/commands/module-help.md index bb3cc66ad4..d55fc7edd4 100644 --- a/content/commands/module-help.md +++ b/content/commands/module-help.md @@ -9,7 +9,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/module-list.md b/content/commands/module-list.md index 68319f7611..2953ff223a 100644 --- a/content/commands/module-list.md +++ b/content/commands/module-list.md @@ -11,7 +11,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/module-load.md b/content/commands/module-load.md index 426c9b9f3e..f38005259e 100644 --- a/content/commands/module-load.md +++ b/content/commands/module-load.md @@ -20,7 +20,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/module-loadex.md b/content/commands/module-loadex.md index 3115d544a0..68e35662d1 100644 --- a/content/commands/module-loadex.md +++ b/content/commands/module-loadex.md @@ -34,7 +34,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -48,7 +47,8 @@ hidden: false linkTitle: MODULE LOADEX since: 7.0.0 summary: Loads a module using extended parameters. -syntax_fmt: "MODULE LOADEX path [CONFIG\_name value [CONFIG name value ...]]\n [ARGS\_\ +syntax_fmt: "MODULE LOADEX path [CONFIG\_name value [CONFIG name value ...]] + [ARGS\_\ args [args ...]]" syntax_str: "[CONFIG\_name value [CONFIG name value ...]] [ARGS\_args [args ...]]" title: MODULE LOADEX diff --git a/content/commands/module-unload.md b/content/commands/module-unload.md index 3d5eba8cd0..02c39c1dd0 100644 --- a/content/commands/module-unload.md +++ b/content/commands/module-unload.md @@ -15,7 +15,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/module.md b/content/commands/module.md index c34e594554..dd12c89938 100644 --- a/content/commands/module.md +++ b/content/commands/module.md @@ -9,7 +9,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: Depends on subcommand. diff --git a/content/commands/monitor.md b/content/commands/monitor.md index 804d123a02..dfb47d1cdc 100644 --- a/content/commands/monitor.md +++ b/content/commands/monitor.md @@ -11,7 +11,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/move.md b/content/commands/move.md index ad2f51a15e..64106a9016 100644 --- a/content/commands/move.md +++ b/content/commands/move.md @@ -19,7 +19,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/mset.md b/content/commands/mset.md index 166ad72ac3..e1faa3cc48 100644 --- a/content/commands/mset.md +++ b/content/commands/mset.md @@ -23,7 +23,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/msetnx.md b/content/commands/msetnx.md index 3219ee5f92..58bdf18e2a 100644 --- a/content/commands/msetnx.md +++ b/content/commands/msetnx.md @@ -23,7 +23,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/multi.md b/content/commands/multi.md index 98210be1f0..6e9da3e2d9 100644 --- a/content/commands/multi.md +++ b/content/commands/multi.md @@ -10,7 +10,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/object-encoding.md b/content/commands/object-encoding.md index f6b78dafdd..9673d9ba30 100644 --- a/content/commands/object-encoding.md +++ b/content/commands/object-encoding.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/object-freq.md b/content/commands/object-freq.md index f887bb656c..b426f3ba56 100644 --- a/content/commands/object-freq.md +++ b/content/commands/object-freq.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/object-help.md b/content/commands/object-help.md index ac4125ae0e..0ccdd4bcf7 100644 --- a/content/commands/object-help.md +++ b/content/commands/object-help.md @@ -10,7 +10,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/object-idletime.md b/content/commands/object-idletime.md index 8de3a53ec8..107a195c36 100644 --- a/content/commands/object-idletime.md +++ b/content/commands/object-idletime.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/object-refcount.md b/content/commands/object-refcount.md index 17afcc5fec..a95ea32965 100644 --- a/content/commands/object-refcount.md +++ b/content/commands/object-refcount.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/object.md b/content/commands/object.md index 389fd4675d..e0c1481719 100644 --- a/content/commands/object.md +++ b/content/commands/object.md @@ -9,7 +9,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: Depends on subcommand. diff --git a/content/commands/persist.md b/content/commands/persist.md index f558ab51ab..2acfebaa37 100644 --- a/content/commands/persist.md +++ b/content/commands/persist.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/pexpire.md b/content/commands/pexpire.md index 3d39700c84..0b735447d2 100644 --- a/content/commands/pexpire.md +++ b/content/commands/pexpire.md @@ -40,7 +40,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/pexpireat.md b/content/commands/pexpireat.md index b190dc09cd..02b1981c58 100644 --- a/content/commands/pexpireat.md +++ b/content/commands/pexpireat.md @@ -40,7 +40,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/pexpiretime.md b/content/commands/pexpiretime.md index 5f9d21d2eb..db8514be1d 100644 --- a/content/commands/pexpiretime.md +++ b/content/commands/pexpiretime.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/pfadd.md b/content/commands/pfadd.md index c087f41213..ed88667a84 100644 --- a/content/commands/pfadd.md +++ b/content/commands/pfadd.md @@ -21,7 +21,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/pfcount.md b/content/commands/pfcount.md index 7fe6e99484..7a2a45748f 100644 --- a/content/commands/pfcount.md +++ b/content/commands/pfcount.md @@ -17,7 +17,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/pfdebug.md b/content/commands/pfdebug.md index 82ab7af2b4..dbec21db90 100644 --- a/content/commands/pfdebug.md +++ b/content/commands/pfdebug.md @@ -21,7 +21,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/pfmerge.md b/content/commands/pfmerge.md index f1989a7f2f..162be5354f 100644 --- a/content/commands/pfmerge.md +++ b/content/commands/pfmerge.md @@ -22,7 +22,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/pfselftest.md b/content/commands/pfselftest.md index 5a0c06c4ab..844b2d8ddb 100644 --- a/content/commands/pfselftest.md +++ b/content/commands/pfselftest.md @@ -12,7 +12,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/ping.md b/content/commands/ping.md index fc2d2e9d62..2c2a18c7e3 100644 --- a/content/commands/ping.md +++ b/content/commands/ping.md @@ -15,7 +15,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/psetex.md b/content/commands/psetex.md index 40356990e8..5e82e84dca 100644 --- a/content/commands/psetex.md +++ b/content/commands/psetex.md @@ -22,7 +22,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/psubscribe.md b/content/commands/psubscribe.md index 3a9c4fc34c..5b408f8fb0 100644 --- a/content/commands/psubscribe.md +++ b/content/commands/psubscribe.md @@ -15,7 +15,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/psync.md b/content/commands/psync.md index 02400b1195..196467b464 100644 --- a/content/commands/psync.md +++ b/content/commands/psync.md @@ -18,7 +18,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/pttl.md b/content/commands/pttl.md index fa91f36429..e01be9a199 100644 --- a/content/commands/pttl.md +++ b/content/commands/pttl.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/publish.md b/content/commands/publish.md index 27c7ea126f..420212bd9c 100644 --- a/content/commands/publish.md +++ b/content/commands/publish.md @@ -17,7 +17,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/pubsub-channels.md b/content/commands/pubsub-channels.md index c2261b5e7c..79bfefad7f 100644 --- a/content/commands/pubsub-channels.md +++ b/content/commands/pubsub-channels.md @@ -15,7 +15,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/pubsub-help.md b/content/commands/pubsub-help.md index e376cc49c6..f246ba65f5 100644 --- a/content/commands/pubsub-help.md +++ b/content/commands/pubsub-help.md @@ -9,7 +9,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/pubsub-numpat.md b/content/commands/pubsub-numpat.md index d4c77e4ae6..89efbb16fd 100644 --- a/content/commands/pubsub-numpat.md +++ b/content/commands/pubsub-numpat.md @@ -10,7 +10,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/pubsub-numsub.md b/content/commands/pubsub-numsub.md index d2be6b9f2f..8212343dad 100644 --- a/content/commands/pubsub-numsub.md +++ b/content/commands/pubsub-numsub.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/pubsub-shardchannels.md b/content/commands/pubsub-shardchannels.md index d807f95d98..df8f1bd2b3 100644 --- a/content/commands/pubsub-shardchannels.md +++ b/content/commands/pubsub-shardchannels.md @@ -15,7 +15,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/pubsub-shardnumsub.md b/content/commands/pubsub-shardnumsub.md index 851e096635..9c1ad0250e 100644 --- a/content/commands/pubsub-shardnumsub.md +++ b/content/commands/pubsub-shardnumsub.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/pubsub.md b/content/commands/pubsub.md index 67932cfa00..7a769bc52b 100644 --- a/content/commands/pubsub.md +++ b/content/commands/pubsub.md @@ -9,7 +9,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: Depends on subcommand. diff --git a/content/commands/punsubscribe.md b/content/commands/punsubscribe.md index 0433403eb1..3a8f775242 100644 --- a/content/commands/punsubscribe.md +++ b/content/commands/punsubscribe.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/quit.md b/content/commands/quit.md index 58633c3a34..55b024ccc5 100644 --- a/content/commands/quit.md +++ b/content/commands/quit.md @@ -10,7 +10,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/randomkey.md b/content/commands/randomkey.md index f813671c84..b692da44fd 100644 --- a/content/commands/randomkey.md +++ b/content/commands/randomkey.md @@ -11,7 +11,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/readonly.md b/content/commands/readonly.md index 15cad03dd6..6f2562f650 100644 --- a/content/commands/readonly.md +++ b/content/commands/readonly.md @@ -10,7 +10,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/readwrite.md b/content/commands/readwrite.md index bf7c88b1bb..0a3a704b5a 100644 --- a/content/commands/readwrite.md +++ b/content/commands/readwrite.md @@ -10,7 +10,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/rename.md b/content/commands/rename.md index 3aa36a244c..479b6e4398 100644 --- a/content/commands/rename.md +++ b/content/commands/rename.md @@ -20,7 +20,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/renamenx.md b/content/commands/renamenx.md index 7fe71077d8..c32974c8a9 100644 --- a/content/commands/renamenx.md +++ b/content/commands/renamenx.md @@ -20,7 +20,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/replconf.md b/content/commands/replconf.md index 71060ab45f..76bc419857 100644 --- a/content/commands/replconf.md +++ b/content/commands/replconf.md @@ -11,7 +11,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/replicaof.md b/content/commands/replicaof.md index 951c2aa248..a09650e092 100644 --- a/content/commands/replicaof.md +++ b/content/commands/replicaof.md @@ -35,7 +35,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/reset.md b/content/commands/reset.md index 81e6041adf..67dc97a5a0 100644 --- a/content/commands/reset.md +++ b/content/commands/reset.md @@ -10,7 +10,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/restore-asking.md b/content/commands/restore-asking.md index 2a5bb90f31..eabed67fd6 100644 --- a/content/commands/restore-asking.md +++ b/content/commands/restore-asking.md @@ -47,7 +47,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -87,7 +86,8 @@ key_specs: linkTitle: RESTORE-ASKING since: 3.0.0 summary: An internal command for migrating keys in a cluster. -syntax_fmt: "RESTORE-ASKING key ttl serialized-value [REPLACE] [ABSTTL]\n [IDLETIME\_\ +syntax_fmt: "RESTORE-ASKING key ttl serialized-value [REPLACE] [ABSTTL] + [IDLETIME\_\ seconds] [FREQ\_frequency]" syntax_str: "ttl serialized-value [REPLACE] [ABSTTL] [IDLETIME\_seconds] [FREQ\_frequency]" title: RESTORE-ASKING diff --git a/content/commands/restore.md b/content/commands/restore.md index ea9a134abb..63e3ff8d2c 100644 --- a/content/commands/restore.md +++ b/content/commands/restore.md @@ -47,7 +47,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -84,7 +83,8 @@ key_specs: linkTitle: RESTORE since: 2.6.0 summary: Creates a key from the serialized representation of a value. -syntax_fmt: "RESTORE key ttl serialized-value [REPLACE] [ABSTTL]\n [IDLETIME\_seconds]\ +syntax_fmt: "RESTORE key ttl serialized-value [REPLACE] [ABSTTL] + [IDLETIME\_seconds]\ \ [FREQ\_frequency]" syntax_str: "ttl serialized-value [REPLACE] [ABSTTL] [IDLETIME\_seconds] [FREQ\_frequency]" title: RESTORE diff --git a/content/commands/role.md b/content/commands/role.md index 50599d203a..2e369705f9 100644 --- a/content/commands/role.md +++ b/content/commands/role.md @@ -11,7 +11,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/rpop.md b/content/commands/rpop.md index 58a9171899..59d1965044 100644 --- a/content/commands/rpop.md +++ b/content/commands/rpop.md @@ -21,7 +21,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/rpoplpush.md b/content/commands/rpoplpush.md index 40ce3a8678..b4cdb51e09 100644 --- a/content/commands/rpoplpush.md +++ b/content/commands/rpoplpush.md @@ -20,7 +20,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/rpush.md b/content/commands/rpush.md index 98edcc93c9..0fd4ea6271 100644 --- a/content/commands/rpush.md +++ b/content/commands/rpush.md @@ -20,7 +20,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/rpushx.md b/content/commands/rpushx.md index a653a6abda..289fea5b10 100644 --- a/content/commands/rpushx.md +++ b/content/commands/rpushx.md @@ -20,7 +20,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/sadd.md b/content/commands/sadd.md index f0100d83f4..ba00b7b9bf 100644 --- a/content/commands/sadd.md +++ b/content/commands/sadd.md @@ -20,7 +20,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/save.md b/content/commands/save.md index caa0e4f8d3..66240b5818 100644 --- a/content/commands/save.md +++ b/content/commands/save.md @@ -11,7 +11,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/scan.md b/content/commands/scan.md index 21a91d89ad..e51f1a8720 100644 --- a/content/commands/scan.md +++ b/content/commands/scan.md @@ -31,7 +31,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/scard.md b/content/commands/scard.md index b570a106d3..d6df35a37b 100644 --- a/content/commands/scard.md +++ b/content/commands/scard.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/script-debug.md b/content/commands/script-debug.md index 84a68bbf9c..76276d9067 100644 --- a/content/commands/script-debug.md +++ b/content/commands/script-debug.md @@ -26,7 +26,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/script-exists.md b/content/commands/script-exists.md index cffb504be5..9b601a7af2 100644 --- a/content/commands/script-exists.md +++ b/content/commands/script-exists.md @@ -15,7 +15,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/script-flush.md b/content/commands/script-flush.md index 554d973292..e042f02696 100644 --- a/content/commands/script-flush.md +++ b/content/commands/script-flush.md @@ -24,7 +24,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/script-help.md b/content/commands/script-help.md index 4169981a8a..0299fd06d0 100644 --- a/content/commands/script-help.md +++ b/content/commands/script-help.md @@ -10,7 +10,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/script-kill.md b/content/commands/script-kill.md index d2fa255e92..4592c84b59 100644 --- a/content/commands/script-kill.md +++ b/content/commands/script-kill.md @@ -10,7 +10,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/script-load.md b/content/commands/script-load.md index f32c47afce..a8a7716eca 100644 --- a/content/commands/script-load.md +++ b/content/commands/script-load.md @@ -14,7 +14,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/script.md b/content/commands/script.md index 3d797bad91..4441f4ff66 100644 --- a/content/commands/script.md +++ b/content/commands/script.md @@ -9,7 +9,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: Depends on subcommand. diff --git a/content/commands/sdiff.md b/content/commands/sdiff.md index 28f0e11fd1..a603c6372f 100644 --- a/content/commands/sdiff.md +++ b/content/commands/sdiff.md @@ -17,7 +17,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/sdiffstore.md b/content/commands/sdiffstore.md index d86454688f..2e811e0b2b 100644 --- a/content/commands/sdiffstore.md +++ b/content/commands/sdiffstore.md @@ -21,7 +21,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/select.md b/content/commands/select.md index 1c941ebf2e..45401150ec 100644 --- a/content/commands/select.md +++ b/content/commands/select.md @@ -14,7 +14,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/set.md b/content/commands/set.md index abc0b944b8..fec29e6985 100644 --- a/content/commands/set.md +++ b/content/commands/set.md @@ -67,7 +67,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/setbit.md b/content/commands/setbit.md index fe64c79acd..b48a12ea29 100644 --- a/content/commands/setbit.md +++ b/content/commands/setbit.md @@ -22,7 +22,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/setex.md b/content/commands/setex.md index ba4ae21437..5b9261745c 100644 --- a/content/commands/setex.md +++ b/content/commands/setex.md @@ -22,7 +22,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/setnx.md b/content/commands/setnx.md index 91783a48fb..eecc8e3a1c 100644 --- a/content/commands/setnx.md +++ b/content/commands/setnx.md @@ -19,7 +19,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/setrange.md b/content/commands/setrange.md index a8007a4034..61543ee45f 100644 --- a/content/commands/setrange.md +++ b/content/commands/setrange.md @@ -22,7 +22,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/shutdown.md b/content/commands/shutdown.md index 533eedd502..0a634762fa 100644 --- a/content/commands/shutdown.md +++ b/content/commands/shutdown.md @@ -42,7 +42,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/sinter.md b/content/commands/sinter.md index 2bbd56da07..ceedb2b223 100644 --- a/content/commands/sinter.md +++ b/content/commands/sinter.md @@ -17,7 +17,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/sintercard.md b/content/commands/sintercard.md index 00f92f02c3..0fce64b0f1 100644 --- a/content/commands/sintercard.md +++ b/content/commands/sintercard.md @@ -25,7 +25,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/sinterstore.md b/content/commands/sinterstore.md index 62d4502c9c..3ca37a754d 100644 --- a/content/commands/sinterstore.md +++ b/content/commands/sinterstore.md @@ -21,7 +21,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/sismember.md b/content/commands/sismember.md index 9002ba3bf9..eaaa620a89 100644 --- a/content/commands/sismember.md +++ b/content/commands/sismember.md @@ -19,7 +19,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/slaveof.md b/content/commands/slaveof.md index 615219b32e..1aa402e479 100644 --- a/content/commands/slaveof.md +++ b/content/commands/slaveof.md @@ -35,7 +35,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/slowlog-get.md b/content/commands/slowlog-get.md index 1ba1491069..2af295e3f1 100644 --- a/content/commands/slowlog-get.md +++ b/content/commands/slowlog-get.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/slowlog-help.md b/content/commands/slowlog-help.md index 785e8ab5b0..1b78f411f4 100644 --- a/content/commands/slowlog-help.md +++ b/content/commands/slowlog-help.md @@ -9,7 +9,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/slowlog-len.md b/content/commands/slowlog-len.md index 73cd406190..ec65c1f0be 100644 --- a/content/commands/slowlog-len.md +++ b/content/commands/slowlog-len.md @@ -11,7 +11,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/slowlog-reset.md b/content/commands/slowlog-reset.md index e2ea85e1b2..09d4070821 100644 --- a/content/commands/slowlog-reset.md +++ b/content/commands/slowlog-reset.md @@ -11,7 +11,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/slowlog.md b/content/commands/slowlog.md index 9caf29d77c..994a451d8a 100644 --- a/content/commands/slowlog.md +++ b/content/commands/slowlog.md @@ -9,7 +9,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: Depends on subcommand. diff --git a/content/commands/smembers.md b/content/commands/smembers.md index e04363645a..83ac2d911a 100644 --- a/content/commands/smembers.md +++ b/content/commands/smembers.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/smismember.md b/content/commands/smismember.md index 3dc9929270..7109bdaa8b 100644 --- a/content/commands/smismember.md +++ b/content/commands/smismember.md @@ -20,7 +20,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/smove.md b/content/commands/smove.md index aa1ad88413..f6d5e67596 100644 --- a/content/commands/smove.md +++ b/content/commands/smove.md @@ -23,7 +23,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/sort.md b/content/commands/sort.md index 746a92c9b7..6c562ebff1 100644 --- a/content/commands/sort.md +++ b/content/commands/sort.md @@ -67,7 +67,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -118,7 +117,8 @@ linkTitle: SORT since: 1.0.0 summary: Sorts the elements in a list, a set, or a sorted set, optionally storing the result. -syntax_fmt: "SORT key [BY\_pattern] [LIMIT\_offset count] [GET\_pattern [GET pattern\n\ +syntax_fmt: "SORT key [BY\_pattern] [LIMIT\_offset count] [GET\_pattern [GET pattern +\ \ ...]] [ASC | DESC] [ALPHA] [STORE\_destination]" syntax_str: "[BY\_pattern] [LIMIT\_offset count] [GET\_pattern [GET pattern ...]]\ \ [ASC | DESC] [ALPHA] [STORE\_destination]" diff --git a/content/commands/sort_ro.md b/content/commands/sort_ro.md index 2772e6c3e3..1e3c4b834f 100644 --- a/content/commands/sort_ro.md +++ b/content/commands/sort_ro.md @@ -61,7 +61,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -99,7 +98,8 @@ key_specs: linkTitle: SORT_RO since: 7.0.0 summary: Returns the sorted elements of a list, a set, or a sorted set. -syntax_fmt: "SORT_RO key [BY\_pattern] [LIMIT\_offset count] [GET\_pattern [GET\n\ +syntax_fmt: "SORT_RO key [BY\_pattern] [LIMIT\_offset count] [GET\_pattern [GET +\ \ pattern ...]] [ASC | DESC] [ALPHA]" syntax_str: "[BY\_pattern] [LIMIT\_offset count] [GET\_pattern [GET pattern ...]]\ \ [ASC | DESC] [ALPHA]" diff --git a/content/commands/spop.md b/content/commands/spop.md index 0de2c93633..f4d6025a9f 100644 --- a/content/commands/spop.md +++ b/content/commands/spop.md @@ -21,7 +21,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/spublish.md b/content/commands/spublish.md index 98c0e98d23..0721886440 100644 --- a/content/commands/spublish.md +++ b/content/commands/spublish.md @@ -17,7 +17,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/srandmember.md b/content/commands/srandmember.md index 5c1de9db8c..09fba0120f 100644 --- a/content/commands/srandmember.md +++ b/content/commands/srandmember.md @@ -21,7 +21,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/srem.md b/content/commands/srem.md index bc2ed90ae5..2d900693c6 100644 --- a/content/commands/srem.md +++ b/content/commands/srem.md @@ -20,7 +20,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/sscan.md b/content/commands/sscan.md index aec7141422..8db218f43e 100644 --- a/content/commands/sscan.md +++ b/content/commands/sscan.md @@ -29,7 +29,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/ssubscribe.md b/content/commands/ssubscribe.md index 8279c667c4..b5455c2e06 100644 --- a/content/commands/ssubscribe.md +++ b/content/commands/ssubscribe.md @@ -15,7 +15,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/strlen.md b/content/commands/strlen.md index 6faec3b7f3..d99031cc3f 100644 --- a/content/commands/strlen.md +++ b/content/commands/strlen.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/subscribe.md b/content/commands/subscribe.md index 6430f9a6db..2c2508ecff 100644 --- a/content/commands/subscribe.md +++ b/content/commands/subscribe.md @@ -15,7 +15,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/substr.md b/content/commands/substr.md index c7822af04d..a14d3790a9 100644 --- a/content/commands/substr.md +++ b/content/commands/substr.md @@ -22,7 +22,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/sunion.md b/content/commands/sunion.md index 948b8db10f..db58b5df9f 100644 --- a/content/commands/sunion.md +++ b/content/commands/sunion.md @@ -17,7 +17,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/sunionstore.md b/content/commands/sunionstore.md index f788fd23b5..de6db0b2a0 100644 --- a/content/commands/sunionstore.md +++ b/content/commands/sunionstore.md @@ -21,7 +21,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/sunsubscribe.md b/content/commands/sunsubscribe.md index a90c6de641..53f7e351ca 100644 --- a/content/commands/sunsubscribe.md +++ b/content/commands/sunsubscribe.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/swapdb.md b/content/commands/swapdb.md index 15b27e3228..7046166054 100644 --- a/content/commands/swapdb.md +++ b/content/commands/swapdb.md @@ -19,7 +19,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/sync.md b/content/commands/sync.md index 0acd70c204..0e419a1475 100644 --- a/content/commands/sync.md +++ b/content/commands/sync.md @@ -11,7 +11,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/tdigest.add.md b/content/commands/tdigest.add.md index 9412d1d884..71cf10760e 100644 --- a/content/commands/tdigest.add.md +++ b/content/commands/tdigest.add.md @@ -19,7 +19,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(N) , where N is the number of samples to add diff --git a/content/commands/tdigest.byrank.md b/content/commands/tdigest.byrank.md index 22c2872560..2fbef16301 100644 --- a/content/commands/tdigest.byrank.md +++ b/content/commands/tdigest.byrank.md @@ -15,7 +15,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(N) where N is the number of ranks specified. @@ -27,8 +26,8 @@ linkTitle: TDIGEST.BYRANK module: Bloom since: 2.4.0 stack_path: docs/data-types/probabilistic -summary: Returns, for each input rank, a floating-point estimation of the value - with that rank +summary: Returns, for each input rank, a floating-point estimation of the value with + that rank syntax_fmt: TDIGEST.BYRANK key rank [rank ...] syntax_str: rank [rank ...] title: TDIGEST.BYRANK diff --git a/content/commands/tdigest.byrevrank.md b/content/commands/tdigest.byrevrank.md index fe98fe7b8b..b9e04f21da 100644 --- a/content/commands/tdigest.byrevrank.md +++ b/content/commands/tdigest.byrevrank.md @@ -15,20 +15,19 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(N) where N is the number of reverse ranks specified. -description: Returns, for each input reverse rank, an estimation of the floating-point value - with that reverse rank +description: Returns, for each input reverse rank, an estimation of the floating-point + value with that reverse rank group: tdigest hidden: false linkTitle: TDIGEST.BYREVRANK module: Bloom since: 2.4.0 stack_path: docs/data-types/probabilistic -summary: Returns, for each input reverse rank, an estimation of the floating-point value - with that reverse rank +summary: Returns, for each input reverse rank, an estimation of the floating-point + value with that reverse rank syntax_fmt: TDIGEST.BYREVRANK key reverse_rank [reverse_rank ...] syntax_str: reverse_rank [reverse_rank ...] title: TDIGEST.BYREVRANK diff --git a/content/commands/tdigest.cdf.md b/content/commands/tdigest.cdf.md index 18e9913de2..6ea21a212e 100644 --- a/content/commands/tdigest.cdf.md +++ b/content/commands/tdigest.cdf.md @@ -15,7 +15,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(N) where N is the number of values specified. diff --git a/content/commands/tdigest.create.md b/content/commands/tdigest.create.md index 71e394396d..235ac84e5f 100644 --- a/content/commands/tdigest.create.md +++ b/content/commands/tdigest.create.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/tdigest.info.md b/content/commands/tdigest.info.md index 03082dd981..9a0387ff6e 100644 --- a/content/commands/tdigest.info.md +++ b/content/commands/tdigest.info.md @@ -12,7 +12,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/tdigest.max.md b/content/commands/tdigest.max.md index d52270b7e4..189e925e67 100644 --- a/content/commands/tdigest.max.md +++ b/content/commands/tdigest.max.md @@ -13,7 +13,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/tdigest.merge.md b/content/commands/tdigest.merge.md index aead1e8ea5..736f8da89c 100644 --- a/content/commands/tdigest.merge.md +++ b/content/commands/tdigest.merge.md @@ -31,7 +31,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(N*K), where N is the number of centroids and K being the number of input @@ -44,7 +43,8 @@ module: Bloom since: 2.4.0 stack_path: docs/data-types/probabilistic summary: Merges multiple t-digest sketches into a single sketch -syntax_fmt: "TDIGEST.MERGE destination-key numkeys source-key [source-key ...]\n \ +syntax_fmt: "TDIGEST.MERGE destination-key numkeys source-key [source-key ...] + \ \ [COMPRESSION compression] [OVERRIDE]" syntax_str: numkeys source-key [source-key ...] [COMPRESSION compression] [OVERRIDE] title: TDIGEST.MERGE diff --git a/content/commands/tdigest.min.md b/content/commands/tdigest.min.md index 85431e6c0e..686e59396e 100644 --- a/content/commands/tdigest.min.md +++ b/content/commands/tdigest.min.md @@ -13,7 +13,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/tdigest.quantile.md b/content/commands/tdigest.quantile.md index 7372a6993b..def2d246dc 100644 --- a/content/commands/tdigest.quantile.md +++ b/content/commands/tdigest.quantile.md @@ -15,12 +15,11 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(N) where N is the number of quantiles specified. -description: Returns, for each input fraction, a floating-point estimation of the value - that is smaller than the given fraction of observations +description: Returns, for each input fraction, a floating-point estimation of the + value that is smaller than the given fraction of observations group: tdigest hidden: false linkTitle: TDIGEST.QUANTILE diff --git a/content/commands/tdigest.rank.md b/content/commands/tdigest.rank.md index 103c46fb04..6c40be6c5f 100644 --- a/content/commands/tdigest.rank.md +++ b/content/commands/tdigest.rank.md @@ -15,12 +15,11 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(N) where N is the number of values specified. -description: Returns, for each floating-point input value, the estimated rank of - the value (the number of observations in the sketch that are smaller than the value +description: Returns, for each floating-point input value, 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) group: tdigest hidden: false @@ -28,9 +27,9 @@ linkTitle: TDIGEST.RANK module: Bloom since: 2.4.0 stack_path: docs/data-types/probabilistic -summary: Returns, for each floating-point input value, 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) +summary: Returns, for each floating-point input value, 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) syntax_fmt: TDIGEST.RANK key value [value ...] syntax_str: value [value ...] title: TDIGEST.RANK diff --git a/content/commands/tdigest.reset.md b/content/commands/tdigest.reset.md index c468749743..e4649b277c 100644 --- a/content/commands/tdigest.reset.md +++ b/content/commands/tdigest.reset.md @@ -13,7 +13,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/tdigest.revrank.md b/content/commands/tdigest.revrank.md index 643de30ba3..88a5d16172 100644 --- a/content/commands/tdigest.revrank.md +++ b/content/commands/tdigest.revrank.md @@ -15,13 +15,12 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(N) where N is the number of values specified. -description: Returns, for each floating-point input value, 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) +description: Returns, for each floating-point input value, 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) group: tdigest hidden: false linkTitle: TDIGEST.REVRANK diff --git a/content/commands/tdigest.trimmed_mean.md b/content/commands/tdigest.trimmed_mean.md index ea589d6eeb..31e5c77bac 100644 --- a/content/commands/tdigest.trimmed_mean.md +++ b/content/commands/tdigest.trimmed_mean.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(N) where N is the number of centroids diff --git a/content/commands/time.md b/content/commands/time.md index cf69a72237..c47afb278e 100644 --- a/content/commands/time.md +++ b/content/commands/time.md @@ -9,7 +9,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/topk.add.md b/content/commands/topk.add.md index 8932b0bd50..4564c68b85 100644 --- a/content/commands/topk.add.md +++ b/content/commands/topk.add.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(n * k) where n is the number of items and k is the depth diff --git a/content/commands/topk.count.md b/content/commands/topk.count.md index 4ae4b72e58..756df45f0e 100644 --- a/content/commands/topk.count.md +++ b/content/commands/topk.count.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(n) where n is the number of items diff --git a/content/commands/topk.incrby.md b/content/commands/topk.incrby.md index 8fb6cc06d5..6b99db61d0 100644 --- a/content/commands/topk.incrby.md +++ b/content/commands/topk.incrby.md @@ -21,7 +21,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(n * k * incr) where n is the number of items, k is the depth and incr diff --git a/content/commands/topk.info.md b/content/commands/topk.info.md index afd21681a9..4488996c93 100644 --- a/content/commands/topk.info.md +++ b/content/commands/topk.info.md @@ -13,7 +13,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/topk.list.md b/content/commands/topk.list.md index 9268bc28d7..0e1bdd4a10 100644 --- a/content/commands/topk.list.md +++ b/content/commands/topk.list.md @@ -17,7 +17,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(k*log(k)) where k is the value of top-k diff --git a/content/commands/topk.query.md b/content/commands/topk.query.md index 8295f65fbd..79cf58dc46 100644 --- a/content/commands/topk.query.md +++ b/content/commands/topk.query.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(n) where n is the number of items diff --git a/content/commands/topk.reserve.md b/content/commands/topk.reserve.md index e29d9c4657..f010a00819 100644 --- a/content/commands/topk.reserve.md +++ b/content/commands/topk.reserve.md @@ -25,7 +25,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/touch.md b/content/commands/touch.md index 574c5f85bb..1c63b1ff27 100644 --- a/content/commands/touch.md +++ b/content/commands/touch.md @@ -17,7 +17,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/ts.add.md b/content/commands/ts.add.md index 86fb05980a..a324e2323e 100644 --- a/content/commands/ts.add.md +++ b/content/commands/ts.add.md @@ -73,7 +73,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(M) when M is the amount of compaction rules or O(1) with no compaction @@ -85,16 +84,30 @@ module: TimeSeries since: 1.0.0 stack_path: docs/data-types/timeseries summary: Append a sample to a time series -syntax: "TS.ADD key timestamp value \n [RETENTION retentionPeriod] \n [ENCODING\ - \ ] \n [CHUNK_SIZE size] \n [DUPLICATE_POLICY policy] \n [ON_DUPLICATE policy_ovr] \n\ - \ [IGNORE ignoreMaxTimediff ignoreMaxValDiff] \n\ - \ [LABELS [label value ...]]\n" -syntax_fmt: "TS.ADD key timestamp value [RETENTION\_retentionPeriod]\n [ENCODING\_\ - ] [CHUNK_SIZE\_size]\n [DUPLICATE_POLICY\_policy] \n [ON_DUPLICATE\_]\n [IGNORE ignoreMaxTimediff ignoreMaxValDiff]\n [LABELS\ [label value ...]]" -syntax_str: "timestamp value [RETENTION\_retentionPeriod] [ENCODING\_] [CHUNK_SIZE\_size] [DUPLICATE_POLICY\_policy] [ON_DUPLICATE\_] [LABELS\ [label value ...]]" +syntax: "TS.ADD key timestamp value + [RETENTION retentionPeriod] + [ENCODING\ + \ ] + [CHUNK_SIZE size] + [DUPLICATE_POLICY policy]\ + \ + [ON_DUPLICATE policy_ovr] + [IGNORE ignoreMaxTimediff ignoreMaxValDiff]\ + \ + [LABELS [label value ...]] +" +syntax_fmt: "TS.ADD key timestamp value [RETENTION\_retentionPeriod] + [ENCODING\_\ + ] [CHUNK_SIZE\_size] + [DUPLICATE_POLICY\_policy] +\ + \ [ON_DUPLICATE\_] + [IGNORE ignoreMaxTimediff\ + \ ignoreMaxValDiff] + [LABELS [label value ...]]" +syntax_str: "timestamp value [RETENTION\_retentionPeriod] [ENCODING\_] [CHUNK_SIZE\_size] [DUPLICATE_POLICY\_policy] [ON_DUPLICATE\_] [LABELS [label value ...]]" title: TS.ADD --- diff --git a/content/commands/ts.alter.md b/content/commands/ts.alter.md index eb1e66c2cc..230d5cb5cb 100644 --- a/content/commands/ts.alter.md +++ b/content/commands/ts.alter.md @@ -54,7 +54,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(N) where N is the number of labels requested to update @@ -68,12 +67,24 @@ since: 1.0.0 stack_path: docs/data-types/timeseries summary: Update the retention, chunk size, duplicate policy, and labels of an existing time series -syntax: "TS.ALTER key \n [RETENTION retentionPeriod] \n [CHUNK_SIZE size] \n [DUPLICATE_POLICY\ - \ policy] \n [IGNORE ignoreMaxTimediff ignoreMaxValDiff] \n [LABELS [label value ...]]\n" -syntax_fmt: "TS.ALTER key [RETENTION\_retentionPeriod] [CHUNK_SIZE\_size]\n [DUPLICATE_POLICY\_\ - ]\n [IGNORE ignoreMaxTimediff ignoreMaxValDiff] \n [LABELS\ [label value ...]]" +syntax: "TS.ALTER key + [RETENTION retentionPeriod] + [CHUNK_SIZE size] + [DUPLICATE_POLICY\ + \ policy] + [IGNORE ignoreMaxTimediff ignoreMaxValDiff] + [LABELS [label value\ + \ ...]] +" +syntax_fmt: "TS.ALTER key [RETENTION\_retentionPeriod] [CHUNK_SIZE\_size] + [DUPLICATE_POLICY\_\ + ] + [IGNORE ignoreMaxTimediff ignoreMaxValDiff]\ + \ + [LABELS [label value ...]]" syntax_str: "[RETENTION\_retentionPeriod] [CHUNK_SIZE\_size] [DUPLICATE_POLICY\_] [IGNORE ignoreMaxTimediff ignoreMaxValDiff] [LABELS\ [label value ...]]" + \ | FIRST | LAST | MIN | MAX | SUM>] [IGNORE ignoreMaxTimediff ignoreMaxValDiff]\ + \ [LABELS [label value ...]]" title: TS.ALTER --- diff --git a/content/commands/ts.create.md b/content/commands/ts.create.md index 41d8b0d594..ef13117909 100644 --- a/content/commands/ts.create.md +++ b/content/commands/ts.create.md @@ -65,7 +65,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) @@ -77,11 +76,24 @@ module: TimeSeries since: 1.0.0 stack_path: docs/data-types/timeseries summary: Create a new time series -syntax: "TS.CREATE key \n [RETENTION retentionPeriod] \n [ENCODING ]\ - \ \n [CHUNK_SIZE size] \n [DUPLICATE_POLICY policy] \n [IGNORE ignoreMaxTimediff ignoreMaxValDiff] \n [LABELS [label value ...]]\n" -syntax_fmt: "TS.CREATE key [RETENTION\_retentionPeriod] [ENCODING\_] [CHUNK_SIZE\_size] [DUPLICATE_POLICY\_]\n\ \ [IGNORE\_ignoreMaxTimediff\_ignoreMaxValDiff]\n\ \ [LABELS\_[label value ...]]" +syntax: "TS.CREATE key + [RETENTION retentionPeriod] + [ENCODING ]\ + \ + [CHUNK_SIZE size] + [DUPLICATE_POLICY policy] + [IGNORE ignoreMaxTimediff\ + \ ignoreMaxValDiff] + [LABELS [label value ...]] +" +syntax_fmt: "TS.CREATE key [RETENTION\_retentionPeriod] [ENCODING\_] [CHUNK_SIZE\_size] [DUPLICATE_POLICY\_] + [IGNORE\_ignoreMaxTimediff\_ignoreMaxValDiff] + [LABELS\_\ + [label value ...]]" syntax_str: "[RETENTION\_retentionPeriod] [ENCODING\_]\ \ [CHUNK_SIZE\_size] [DUPLICATE_POLICY\_]\ \ [IGNORE\_ignoreMaxTimediff\_ignoreMaxValDiff] [LABELS\_[label value ...]]" diff --git a/content/commands/ts.createrule.md b/content/commands/ts.createrule.md index 3de94bf7b9..f4e0b05009 100644 --- a/content/commands/ts.createrule.md +++ b/content/commands/ts.createrule.md @@ -65,7 +65,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) @@ -77,10 +76,15 @@ module: TimeSeries since: 1.0.0 stack_path: docs/data-types/timeseries summary: Create a compaction rule -syntax: "TS.CREATERULE sourceKey destKey \n AGGREGATION aggregator bucketDuration\ - \ \n [alignTimestamp]\n" -syntax_fmt: "TS.CREATERULE sourceKey destKey AGGREGATION\_ bucketDuration\ +syntax: "TS.CREATERULE sourceKey destKey + AGGREGATION aggregator bucketDuration\ + \ + [alignTimestamp] +" +syntax_fmt: "TS.CREATERULE sourceKey destKey AGGREGATION\_ bucketDuration\ \ [alignTimestamp]" syntax_str: "destKey AGGREGATION\_ bucketDuration [alignTimestamp]" diff --git a/content/commands/ts.decrby.md b/content/commands/ts.decrby.md index 56410ba21a..93639cdcc6 100644 --- a/content/commands/ts.decrby.md +++ b/content/commands/ts.decrby.md @@ -52,7 +52,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(M) when M is the amount of compaction rules or O(1) with no compaction @@ -68,12 +67,26 @@ stack_path: docs/data-types/timeseries summary: Decrease the value of the sample with the maximum existing timestamp, or create a new sample with a value equal to the value of the sample with the maximum existing timestamp with a given decrement -syntax: "TS.DECRBY key subtrahend \n [TIMESTAMP timestamp] \n [RETENTION retentionPeriod]\ - \ \n [ENCODING ] \n [CHUNK_SIZE size] \n [DUPLICATE_POLICY policy] \n [IGNORE ignoreMaxTimediff ignoreMaxValDiff]\ \ \n\ \ [LABELS [label value ...]]\n" -syntax_fmt: "TS.DECRBY key value [TIMESTAMP\_timestamp]\n [RETENTION\_retentionPeriod]\ - \ [ENCODING\_] [CHUNK_SIZE\_size]\n [DUPLICATE_POLICY\_policy] [LABELS\_[label value ...]]" -syntax_str: "value [TIMESTAMP\_timestamp] [RETENTION\_retentionPeriod] [ENCODING\_]\ - \ [CHUNK_SIZE\_size] [DUPLICATE_POLICY\_policy] [LABELS\_[label value ...]]" +syntax: "TS.DECRBY key subtrahend + [TIMESTAMP timestamp] + [RETENTION retentionPeriod]\ + \ + [ENCODING ] + [CHUNK_SIZE size] + [DUPLICATE_POLICY\ + \ policy] + [IGNORE ignoreMaxTimediff ignoreMaxValDiff] + [LABELS [label value\ + \ ...]] +" +syntax_fmt: "TS.DECRBY key value [TIMESTAMP\_timestamp] + [RETENTION\_retentionPeriod]\ + \ [ENCODING\_] [CHUNK_SIZE\_size] + [DUPLICATE_POLICY\_\ + policy] [LABELS\_[label value ...]]" +syntax_str: "value [TIMESTAMP\_timestamp] [RETENTION\_retentionPeriod] [ENCODING\_\ + ] [CHUNK_SIZE\_size] [DUPLICATE_POLICY\_policy] [LABELS\_\ + [label value ...]]" title: TS.DECRBY --- diff --git a/content/commands/ts.del.md b/content/commands/ts.del.md index 53f87180ae..2f2808fa47 100644 --- a/content/commands/ts.del.md +++ b/content/commands/ts.del.md @@ -17,7 +17,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(N) where N is the number of data points that will be removed diff --git a/content/commands/ts.deleterule.md b/content/commands/ts.deleterule.md index 37ae079d19..8b9d5cbd24 100644 --- a/content/commands/ts.deleterule.md +++ b/content/commands/ts.deleterule.md @@ -15,7 +15,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/ts.get.md b/content/commands/ts.get.md index 24ff212d58..7292b48d9b 100644 --- a/content/commands/ts.get.md +++ b/content/commands/ts.get.md @@ -17,7 +17,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) @@ -29,7 +28,9 @@ module: TimeSeries since: 1.0.0 stack_path: docs/data-types/timeseries summary: Get the sample with the highest timestamp from a given time series -syntax: "TS.GET key \n [LATEST]\n" +syntax: "TS.GET key + [LATEST] +" syntax_fmt: TS.GET key [LATEST] syntax_str: '[LATEST]' title: TS.GET diff --git a/content/commands/ts.incrby.md b/content/commands/ts.incrby.md index 7d6c6f70b1..ca2732cd10 100644 --- a/content/commands/ts.incrby.md +++ b/content/commands/ts.incrby.md @@ -52,7 +52,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(M) when M is the amount of compaction rules or O(1) with no compaction @@ -68,13 +67,26 @@ stack_path: docs/data-types/timeseries summary: Increase the value of the sample with the maximum existing timestamp, or create a new sample with a value equal to the value of the sample with the maximum existing timestamp with a given increment -syntax: "TS.INCRBY key addend \n [TIMESTAMP timestamp] \n [RETENTION retentionPeriod]\ - \ \n [ENCODING ] \n [CHUNK_SIZE size] \n [DUPLICATE_POLICY policy] \n [IGNORE ignoreMaxTimediff ignoreMaxValDiff]\ - \ \n [LABELS [label value ...]]\n" -syntax_fmt: "TS.INCRBY key value [TIMESTAMP\_timestamp]\n [RETENTION\_retentionPeriod]\ - \ [ENCODING\_] [CHUNK_SIZE\_size]\n [DUPLICATE_POLICY\_policy] [LABELS\_[label value ...]]" -syntax_str: "value [TIMESTAMP\_timestamp] [RETENTION\_retentionPeriod] [ENCODING\_]\ - \ [CHUNK_SIZE\_size] [DUPLICATE_POLICY\_policy] [LABELS\_[label value ...]]" +syntax: "TS.INCRBY key addend + [TIMESTAMP timestamp] + [RETENTION retentionPeriod]\ + \ + [ENCODING ] + [CHUNK_SIZE size] + [DUPLICATE_POLICY\ + \ policy] + [IGNORE ignoreMaxTimediff ignoreMaxValDiff] + [LABELS [label value\ + \ ...]] +" +syntax_fmt: "TS.INCRBY key value [TIMESTAMP\_timestamp] + [RETENTION\_retentionPeriod]\ + \ [ENCODING\_] [CHUNK_SIZE\_size] + [DUPLICATE_POLICY\_\ + policy] [LABELS\_[label value ...]]" +syntax_str: "value [TIMESTAMP\_timestamp] [RETENTION\_retentionPeriod] [ENCODING\_\ + ] [CHUNK_SIZE\_size] [DUPLICATE_POLICY\_policy] [LABELS\_\ + [label value ...]]" title: TS.INCRBY --- diff --git a/content/commands/ts.info.md b/content/commands/ts.info.md index 527c67f81b..33243ecb2b 100644 --- a/content/commands/ts.info.md +++ b/content/commands/ts.info.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(1) @@ -28,7 +27,9 @@ module: TimeSeries since: 1.0.0 stack_path: docs/data-types/timeseries summary: Returns information and statistics for a time series -syntax: "TS.INFO key \n [DEBUG]\n" +syntax: "TS.INFO key + [DEBUG] +" syntax_fmt: TS.INFO key [DEBUG] syntax_str: '[DEBUG]' title: TS.INFO diff --git a/content/commands/ts.madd.md b/content/commands/ts.madd.md index d9abcaac7f..593766b299 100644 --- a/content/commands/ts.madd.md +++ b/content/commands/ts.madd.md @@ -21,7 +21,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(N*M) when N is the amount of series updated and M is the amount of compaction diff --git a/content/commands/ts.mget.md b/content/commands/ts.mget.md index ef3870cd6a..00dd9796e7 100644 --- a/content/commands/ts.mget.md +++ b/content/commands/ts.mget.md @@ -48,7 +48,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(n) where n is the number of time-series that match the filters @@ -65,8 +64,10 @@ summary: Get the sample with the highest timestamp from each time series matchin syntax: 'TS.MGET [LATEST] [WITHLABELS | ] FILTER filterExpr... ' -syntax_fmt: "TS.MGET [LATEST] [WITHLABELS | ]\n\ - \ FILTER\_] +\ + \ FILTER\_" syntax_str: "[WITHLABELS | ] FILTER\_]\n [COUNT\ - \ count]\n [[ALIGN align] AGGREGATION aggregator bucketDuration [BUCKETTIMESTAMP\ - \ bt] [EMPTY]]\n FILTER filterExpr...\n [GROUPBY label REDUCE reducer]\n" -syntax_fmt: "TS.MRANGE fromTimestamp toTimestamp [LATEST] [FILTER_BY_TS\_Timestamp\n\ - \ [Timestamp ...]] [FILTER_BY_VALUE min max] [WITHLABELS |\n ] [COUNT\_count] [[ALIGN\_value]\n AGGREGATION\_ bucketDuration\n\ - \ [BUCKETTIMESTAMP] [EMPTY]] FILTER\_\ - \ [GROUPBY label REDUCE\n reducer]" +syntax: "TS.MRANGE fromTimestamp toTimestamp + [LATEST] + [FILTER_BY_TS ts...] +\ + \ [FILTER_BY_VALUE min max] + [WITHLABELS | ] + [COUNT\ + \ count] + [[ALIGN align] AGGREGATION aggregator bucketDuration [BUCKETTIMESTAMP\ + \ bt] [EMPTY]] + FILTER filterExpr... + [GROUPBY label REDUCE reducer] +" +syntax_fmt: "TS.MRANGE fromTimestamp toTimestamp [LATEST] [FILTER_BY_TS\_Timestamp +\ + \ [Timestamp ...]] [FILTER_BY_VALUE min max] [WITHLABELS | + ] [COUNT\_count] [[ALIGN\_value] + AGGREGATION\_ bucketDuration + [BUCKETTIMESTAMP] [EMPTY]] FILTER\_ [GROUPBY label REDUCE + reducer]" syntax_str: "toTimestamp [LATEST] [FILTER_BY_TS\_Timestamp [Timestamp ...]] [FILTER_BY_VALUE\ \ min max] [WITHLABELS | ] [COUNT\_count] [[ALIGN\_\ value] AGGREGATION\_]\n [COUNT\ - \ count]\n [[ALIGN align] AGGREGATION aggregator bucketDuration [BUCKETTIMESTAMP\ - \ bt] [EMPTY]]\n FILTER filterExpr...\n [GROUPBY label REDUCE reducer]\n" -syntax_fmt: "TS.MREVRANGE fromTimestamp toTimestamp [LATEST]\n [FILTER_BY_TS\_Timestamp\ - \ [Timestamp ...]] [FILTER_BY_VALUE min max]\n [WITHLABELS | ] [COUNT\_count]\n [[ALIGN\_value] AGGREGATION\_\n\ - \ bucketDuration [BUCKETTIMESTAMP] [EMPTY]] FILTER\_ [GROUPBY label REDUCE\n reducer]" +syntax: "TS.MREVRANGE fromTimestamp toTimestamp + [LATEST] + [FILTER_BY_TS ts...] +\ + \ [FILTER_BY_VALUE min max] + [WITHLABELS | ] + [COUNT\ + \ count] + [[ALIGN align] AGGREGATION aggregator bucketDuration [BUCKETTIMESTAMP\ + \ bt] [EMPTY]] + FILTER filterExpr... + [GROUPBY label REDUCE reducer] +" +syntax_fmt: "TS.MREVRANGE fromTimestamp toTimestamp [LATEST] + [FILTER_BY_TS\_Timestamp\ + \ [Timestamp ...]] [FILTER_BY_VALUE min max] + [WITHLABELS | ] [COUNT\_count] + [[ALIGN\_value] AGGREGATION\_ +\ + \ bucketDuration [BUCKETTIMESTAMP] [EMPTY]] FILTER\_ [GROUPBY label REDUCE + reducer]" syntax_str: "toTimestamp [LATEST] [FILTER_BY_TS\_Timestamp [Timestamp ...]] [FILTER_BY_VALUE\ \ min max] [WITHLABELS | ] [COUNT\_count] [[ALIGN\_\ value] AGGREGATION\_" +syntax_fmt: "TS.QUERYINDEX " syntax_str: '' title: TS.QUERYINDEX --- diff --git a/content/commands/ts.range.md b/content/commands/ts.range.md index 7a30e540bb..7b15c52787 100644 --- a/content/commands/ts.range.md +++ b/content/commands/ts.range.md @@ -105,7 +105,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: O(n/m+k) where n = Number of data points, m = Chunk size (data points @@ -118,13 +117,23 @@ module: TimeSeries since: 1.0.0 stack_path: docs/data-types/timeseries summary: Query a range in forward direction -syntax: "TS.RANGE key fromTimestamp toTimestamp\n [LATEST]\n [FILTER_BY_TS ts...]\n\ - \ [FILTER_BY_VALUE min max]\n [COUNT count] \n [[ALIGN align] AGGREGATION aggregator\ - \ bucketDuration [BUCKETTIMESTAMP bt] [EMPTY]]\n" -syntax_fmt: "TS.RANGE key fromTimestamp toTimestamp [LATEST]\n [FILTER_BY_TS\_Timestamp\ - \ [Timestamp ...]] [FILTER_BY_VALUE min max]\n [COUNT\_count] [[ALIGN\_value] AGGREGATION\_\ - \n bucketDuration [BUCKETTIMESTAMP] [EMPTY]]" +syntax: "TS.RANGE key fromTimestamp toTimestamp + [LATEST] + [FILTER_BY_TS ts...] +\ + \ [FILTER_BY_VALUE min max] + [COUNT count] + [[ALIGN align] AGGREGATION aggregator\ + \ bucketDuration [BUCKETTIMESTAMP bt] [EMPTY]] +" +syntax_fmt: "TS.RANGE key fromTimestamp toTimestamp [LATEST] + [FILTER_BY_TS\_Timestamp\ + \ [Timestamp ...]] [FILTER_BY_VALUE min max] + [COUNT\_count] [[ALIGN\_value] AGGREGATION\_\ + + bucketDuration [BUCKETTIMESTAMP] [EMPTY]]" syntax_str: "fromTimestamp toTimestamp [LATEST] [FILTER_BY_TS\_Timestamp [Timestamp\ \ ...]] [FILTER_BY_VALUE min max] [COUNT\_count] [[ALIGN\_value] AGGREGATION\_\n bucketDuration [BUCKETTIMESTAMP] [EMPTY]]" +syntax: "TS.REVRANGE key fromTimestamp toTimestamp + [LATEST] + [FILTER_BY_TS ts...] +\ + \ [FILTER_BY_VALUE min max] + [COUNT count] + [[ALIGN align] AGGREGATION aggregator\ + \ bucketDuration [BUCKETTIMESTAMP bt] [EMPTY]] +" +syntax_fmt: "TS.REVRANGE key fromTimestamp toTimestamp [LATEST] + [FILTER_BY_TS\_\ + Timestamp [Timestamp ...]] [FILTER_BY_VALUE min max] + [COUNT\_count] [[ALIGN\_\ + value] AGGREGATION\_ + bucketDuration [BUCKETTIMESTAMP] [EMPTY]]" syntax_str: "fromTimestamp toTimestamp [LATEST] [FILTER_BY_TS\_Timestamp [Timestamp\ \ ...]] [FILTER_BY_VALUE min max] [COUNT\_count] [[ALIGN\_value] AGGREGATION\_\n\ - \ [= | ~] threshold [LIMIT\_count]] <* | id> field value [field value\n ...]" +syntax_fmt: "XADD key [NOMKSTREAM] [KEEPREF | DELREF | ACKED] [ +\ + \ [= | ~] threshold [LIMIT\_count]] <* | id> field value [field value + ...]" syntax_str: "[NOMKSTREAM] [KEEPREF | DELREF | ACKED] [ [= | ~] threshold\ \ [LIMIT\_count]] <* | id> field value [field value ...]" title: XADD diff --git a/content/commands/xautoclaim.md b/content/commands/xautoclaim.md index 9639153eb7..d2d42af27b 100644 --- a/content/commands/xautoclaim.md +++ b/content/commands/xautoclaim.md @@ -38,7 +38,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -72,7 +71,8 @@ linkTitle: XAUTOCLAIM since: 6.2.0 summary: Changes, or acquires, ownership of messages in a consumer group, as if the messages were delivered to as consumer group member. -syntax_fmt: "XAUTOCLAIM key group consumer min-idle-time start [COUNT\_count]\n [JUSTID]" +syntax_fmt: "XAUTOCLAIM key group consumer min-idle-time start [COUNT\_count] + [JUSTID]" syntax_str: "group consumer min-idle-time start [COUNT\_count] [JUSTID]" title: XAUTOCLAIM --- diff --git a/content/commands/xclaim.md b/content/commands/xclaim.md index 41433ea6ed..a6e0122655 100644 --- a/content/commands/xclaim.md +++ b/content/commands/xclaim.md @@ -59,7 +59,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -90,8 +89,10 @@ linkTitle: XCLAIM since: 5.0.0 summary: Changes, or acquires, ownership of a message in a consumer group, as if the message was delivered a consumer group member. -syntax_fmt: "XCLAIM key group consumer min-idle-time id [id ...] [IDLE\_ms]\n [TIME\_\ - unix-time-milliseconds] [RETRYCOUNT\_count] [FORCE] [JUSTID]\n [LASTID\_lastid]" +syntax_fmt: "XCLAIM key group consumer min-idle-time id [id ...] [IDLE\_ms] + [TIME\_\ + unix-time-milliseconds] [RETRYCOUNT\_count] [FORCE] [JUSTID] + [LASTID\_lastid]" syntax_str: "group consumer min-idle-time id [id ...] [IDLE\_ms] [TIME\_unix-time-milliseconds]\ \ [RETRYCOUNT\_count] [FORCE] [JUSTID] [LASTID\_lastid]" title: XCLAIM diff --git a/content/commands/xdel.md b/content/commands/xdel.md index ad1fbb1c08..c8e6765efa 100644 --- a/content/commands/xdel.md +++ b/content/commands/xdel.md @@ -20,7 +20,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/xdelex.md b/content/commands/xdelex.md index ae3860e6b4..3641d3e8b6 100644 --- a/content/commands/xdelex.md +++ b/content/commands/xdelex.md @@ -43,7 +43,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/xgroup-create.md b/content/commands/xgroup-create.md index 97005f26ec..fc16ca7740 100644 --- a/content/commands/xgroup-create.md +++ b/content/commands/xgroup-create.md @@ -39,7 +39,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -68,7 +67,8 @@ key_specs: linkTitle: XGROUP CREATE since: 5.0.0 summary: Creates a consumer group. -syntax_fmt: "XGROUP CREATE key group [MKSTREAM]\n [ENTRIESREAD\_entries-read]" +syntax_fmt: "XGROUP CREATE key group [MKSTREAM] + [ENTRIESREAD\_entries-read]" syntax_str: "group [MKSTREAM] [ENTRIESREAD\_entries-read]" title: XGROUP CREATE --- diff --git a/content/commands/xgroup-createconsumer.md b/content/commands/xgroup-createconsumer.md index e5f5f414bb..f27ef29cf7 100644 --- a/content/commands/xgroup-createconsumer.md +++ b/content/commands/xgroup-createconsumer.md @@ -22,7 +22,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/xgroup-delconsumer.md b/content/commands/xgroup-delconsumer.md index 56933271fe..bd8bb30fab 100644 --- a/content/commands/xgroup-delconsumer.md +++ b/content/commands/xgroup-delconsumer.md @@ -22,7 +22,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/xgroup-destroy.md b/content/commands/xgroup-destroy.md index a494e7e020..2f5a01a280 100644 --- a/content/commands/xgroup-destroy.md +++ b/content/commands/xgroup-destroy.md @@ -19,7 +19,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/xgroup-help.md b/content/commands/xgroup-help.md index b70230183e..7f5fb3e46c 100644 --- a/content/commands/xgroup-help.md +++ b/content/commands/xgroup-help.md @@ -10,7 +10,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/xgroup-setid.md b/content/commands/xgroup-setid.md index 4d0023f4ca..05b69ba5fd 100644 --- a/content/commands/xgroup-setid.md +++ b/content/commands/xgroup-setid.md @@ -34,7 +34,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/xgroup.md b/content/commands/xgroup.md index 06ba07cacb..561bf72366 100644 --- a/content/commands/xgroup.md +++ b/content/commands/xgroup.md @@ -9,7 +9,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: Depends on subcommand. diff --git a/content/commands/xinfo-consumers.md b/content/commands/xinfo-consumers.md index f93a96d8ee..67bac4cec9 100644 --- a/content/commands/xinfo-consumers.md +++ b/content/commands/xinfo-consumers.md @@ -19,7 +19,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/xinfo-groups.md b/content/commands/xinfo-groups.md index 743ca9bed3..33fe5e2778 100644 --- a/content/commands/xinfo-groups.md +++ b/content/commands/xinfo-groups.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/xinfo-help.md b/content/commands/xinfo-help.md index 60bcfb7f0b..cfa0411c2f 100644 --- a/content/commands/xinfo-help.md +++ b/content/commands/xinfo-help.md @@ -10,7 +10,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/xinfo-stream.md b/content/commands/xinfo-stream.md index dda0d016d5..84bdd463f9 100644 --- a/content/commands/xinfo-stream.md +++ b/content/commands/xinfo-stream.md @@ -29,7 +29,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/xinfo.md b/content/commands/xinfo.md index aab40f11ce..6b35486618 100644 --- a/content/commands/xinfo.md +++ b/content/commands/xinfo.md @@ -9,7 +9,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients complexity: Depends on subcommand. diff --git a/content/commands/xlen.md b/content/commands/xlen.md index 1b7f3ec161..1c424ce496 100644 --- a/content/commands/xlen.md +++ b/content/commands/xlen.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/xpending.md b/content/commands/xpending.md index 8e45f2d9f4..0984b2e264 100644 --- a/content/commands/xpending.md +++ b/content/commands/xpending.md @@ -42,7 +42,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/xrange.md b/content/commands/xrange.md index 5b02fc604d..57e93eae98 100644 --- a/content/commands/xrange.md +++ b/content/commands/xrange.md @@ -27,7 +27,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/xread.md b/content/commands/xread.md index 0c07a45ae0..dfe7c184f9 100644 --- a/content/commands/xread.md +++ b/content/commands/xread.md @@ -36,7 +36,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -65,7 +64,8 @@ linkTitle: XREAD since: 5.0.0 summary: Returns messages from multiple streams with IDs greater than the ones requested. Blocks until a message is available otherwise. -syntax_fmt: "XREAD [COUNT\_count] [BLOCK\_milliseconds] STREAMS\_key [key ...] id\n\ +syntax_fmt: "XREAD [COUNT\_count] [BLOCK\_milliseconds] STREAMS\_key [key ...] id +\ \ [id ...]" syntax_str: "[BLOCK\_milliseconds] STREAMS\_key [key ...] id [id ...]" title: XREAD diff --git a/content/commands/xreadgroup.md b/content/commands/xreadgroup.md index 102696ec9a..e37d657df7 100644 --- a/content/commands/xreadgroup.md +++ b/content/commands/xreadgroup.md @@ -51,7 +51,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -84,7 +83,8 @@ linkTitle: XREADGROUP since: 5.0.0 summary: Returns new or historical messages from a stream for a consumer in a group. Blocks until a message is available otherwise. -syntax_fmt: "XREADGROUP GROUP\_group consumer [COUNT\_count] [BLOCK\_milliseconds]\n\ +syntax_fmt: "XREADGROUP GROUP\_group consumer [COUNT\_count] [BLOCK\_milliseconds] +\ \ [NOACK] STREAMS\_key [key ...] id [id ...]" syntax_str: "[COUNT\_count] [BLOCK\_milliseconds] [NOACK] STREAMS\_key [key ...] id\ \ [id ...]" diff --git a/content/commands/xrevrange.md b/content/commands/xrevrange.md index 39dd1dc668..36fca24cbb 100644 --- a/content/commands/xrevrange.md +++ b/content/commands/xrevrange.md @@ -27,7 +27,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/xsetid.md b/content/commands/xsetid.md index d492ad6ac1..b7743aa496 100644 --- a/content/commands/xsetid.md +++ b/content/commands/xsetid.md @@ -31,7 +31,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -61,7 +60,8 @@ key_specs: linkTitle: XSETID since: 5.0.0 summary: An internal command for replicating stream values. -syntax_fmt: "XSETID key last-id [ENTRIESADDED\_entries-added]\n [MAXDELETEDID\_max-deleted-id]" +syntax_fmt: "XSETID key last-id [ENTRIESADDED\_entries-added] + [MAXDELETEDID\_max-deleted-id]" syntax_str: "last-id [ENTRIESADDED\_entries-added] [MAXDELETEDID\_max-deleted-id]" title: XSETID --- diff --git a/content/commands/xtrim.md b/content/commands/xtrim.md index 4c030032f3..624ea8663f 100644 --- a/content/commands/xtrim.md +++ b/content/commands/xtrim.md @@ -68,7 +68,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -102,7 +101,8 @@ key_specs: linkTitle: XTRIM since: 5.0.0 summary: Deletes messages from the beginning of a stream. -syntax_fmt: "XTRIM key [= | ~] threshold [LIMIT\_count] [KEEPREF\n\ +syntax_fmt: "XTRIM key [= | ~] threshold [LIMIT\_count] [KEEPREF +\ \ | DELREF | ACKED]" syntax_str: " [= | ~] threshold [LIMIT\_count] [KEEPREF | DELREF |\ \ ACKED]" diff --git a/content/commands/zadd.md b/content/commands/zadd.md index fde6e7535c..2c2f19aaf3 100644 --- a/content/commands/zadd.md +++ b/content/commands/zadd.md @@ -64,7 +64,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -101,7 +100,8 @@ linkTitle: ZADD since: 1.2.0 summary: Adds one or more members to a sorted set, or updates their scores. Creates the key if it doesn't exist. -syntax_fmt: "ZADD key [NX | XX] [GT | LT] [CH] [INCR] score member [score member\n\ +syntax_fmt: "ZADD key [NX | XX] [GT | LT] [CH] [INCR] score member [score member +\ \ ...]" syntax_str: '[NX | XX] [GT | LT] [CH] [INCR] score member [score member ...]' title: ZADD diff --git a/content/commands/zcard.md b/content/commands/zcard.md index 55843b27b8..eb7f784a2f 100644 --- a/content/commands/zcard.md +++ b/content/commands/zcard.md @@ -16,7 +16,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/zcount.md b/content/commands/zcount.md index 188545ef8e..b0b4cc1bce 100644 --- a/content/commands/zcount.md +++ b/content/commands/zcount.md @@ -22,7 +22,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/zdiff.md b/content/commands/zdiff.md index 0c40d0b3ac..518623cdaa 100644 --- a/content/commands/zdiff.md +++ b/content/commands/zdiff.md @@ -25,7 +25,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/zdiffstore.md b/content/commands/zdiffstore.md index 6757f652b8..48d1448440 100644 --- a/content/commands/zdiffstore.md +++ b/content/commands/zdiffstore.md @@ -24,7 +24,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/zincrby.md b/content/commands/zincrby.md index 2e8af0ea55..5a3dfd207b 100644 --- a/content/commands/zincrby.md +++ b/content/commands/zincrby.md @@ -22,7 +22,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/zinter.md b/content/commands/zinter.md index 98c5c813fe..147f5c530e 100644 --- a/content/commands/zinter.md +++ b/content/commands/zinter.md @@ -48,7 +48,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -76,7 +75,8 @@ key_specs: linkTitle: ZINTER since: 6.2.0 summary: Returns the intersect of multiple sorted sets. -syntax_fmt: "ZINTER numkeys key [key ...] [WEIGHTS\_weight [weight ...]]\n [AGGREGATE\_\ +syntax_fmt: "ZINTER numkeys key [key ...] [WEIGHTS\_weight [weight ...]] + [AGGREGATE\_\ ] [WITHSCORES]" syntax_str: "key [key ...] [WEIGHTS\_weight [weight ...]] [AGGREGATE\_] [WITHSCORES]" diff --git a/content/commands/zintercard.md b/content/commands/zintercard.md index 40f5ef2731..7470e39a4a 100644 --- a/content/commands/zintercard.md +++ b/content/commands/zintercard.md @@ -25,7 +25,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/zinterstore.md b/content/commands/zinterstore.md index b569a7dd87..79e76f1449 100644 --- a/content/commands/zinterstore.md +++ b/content/commands/zinterstore.md @@ -47,7 +47,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -88,7 +87,8 @@ key_specs: linkTitle: ZINTERSTORE since: 2.0.0 summary: Stores the intersect of multiple sorted sets in a key. -syntax_fmt: "ZINTERSTORE destination numkeys key [key ...] [WEIGHTS\_weight\n [weight\ +syntax_fmt: "ZINTERSTORE destination numkeys key [key ...] [WEIGHTS\_weight + [weight\ \ ...]] [AGGREGATE\_]" syntax_str: "numkeys key [key ...] [WEIGHTS\_weight [weight ...]] [AGGREGATE\_]" diff --git a/content/commands/zlexcount.md b/content/commands/zlexcount.md index 39d5ec018e..bcb047d736 100644 --- a/content/commands/zlexcount.md +++ b/content/commands/zlexcount.md @@ -22,7 +22,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/zmpop.md b/content/commands/zmpop.md index 0fc2e6b872..8d48983a55 100644 --- a/content/commands/zmpop.md +++ b/content/commands/zmpop.md @@ -36,7 +36,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/zmscore.md b/content/commands/zmscore.md index dd0252e1ac..507ed32126 100644 --- a/content/commands/zmscore.md +++ b/content/commands/zmscore.md @@ -20,7 +20,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/zpopmax.md b/content/commands/zpopmax.md index b0794e3bb3..a99eb26f15 100644 --- a/content/commands/zpopmax.md +++ b/content/commands/zpopmax.md @@ -20,7 +20,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/zpopmin.md b/content/commands/zpopmin.md index ff04c2f35c..7dba0b7273 100644 --- a/content/commands/zpopmin.md +++ b/content/commands/zpopmin.md @@ -20,7 +20,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/zrandmember.md b/content/commands/zrandmember.md index d05ff393a3..658dc86d4a 100644 --- a/content/commands/zrandmember.md +++ b/content/commands/zrandmember.md @@ -28,7 +28,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/zrange.md b/content/commands/zrange.md index 404a1fef1d..8a9ac41dce 100644 --- a/content/commands/zrange.md +++ b/content/commands/zrange.md @@ -58,7 +58,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -87,7 +86,8 @@ key_specs: linkTitle: ZRANGE since: 1.2.0 summary: Returns members in a sorted set within a range of indexes. -syntax_fmt: "ZRANGE key start stop [BYSCORE | BYLEX] [REV] [LIMIT\_offset count]\n\ +syntax_fmt: "ZRANGE key start stop [BYSCORE | BYLEX] [REV] [LIMIT\_offset count] +\ \ [WITHSCORES]" syntax_str: "start stop [BYSCORE | BYLEX] [REV] [LIMIT\_offset count] [WITHSCORES]" title: ZRANGE diff --git a/content/commands/zrangebylex.md b/content/commands/zrangebylex.md index 171927d68c..37cb18b07f 100644 --- a/content/commands/zrangebylex.md +++ b/content/commands/zrangebylex.md @@ -33,7 +33,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/zrangebyscore.md b/content/commands/zrangebyscore.md index 8763436bc4..3d629e6779 100644 --- a/content/commands/zrangebyscore.md +++ b/content/commands/zrangebyscore.md @@ -39,7 +39,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/zrangestore.md b/content/commands/zrangestore.md index c2f84d5b54..589b8414b8 100644 --- a/content/commands/zrangestore.md +++ b/content/commands/zrangestore.md @@ -54,7 +54,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -93,7 +92,8 @@ key_specs: linkTitle: ZRANGESTORE since: 6.2.0 summary: Stores a range of members from sorted set in a key. -syntax_fmt: "ZRANGESTORE dst src min max [BYSCORE | BYLEX] [REV] [LIMIT\_offset\n\ +syntax_fmt: "ZRANGESTORE dst src min max [BYSCORE | BYLEX] [REV] [LIMIT\_offset +\ \ count]" syntax_str: "src min max [BYSCORE | BYLEX] [REV] [LIMIT\_offset count]" title: ZRANGESTORE diff --git a/content/commands/zrank.md b/content/commands/zrank.md index 3bc3ed241f..0589daef3c 100644 --- a/content/commands/zrank.md +++ b/content/commands/zrank.md @@ -24,7 +24,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/zrem.md b/content/commands/zrem.md index 87b6d572e5..96ccf9201d 100644 --- a/content/commands/zrem.md +++ b/content/commands/zrem.md @@ -20,7 +20,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/zremrangebylex.md b/content/commands/zremrangebylex.md index f0e772e53d..21860d68b9 100644 --- a/content/commands/zremrangebylex.md +++ b/content/commands/zremrangebylex.md @@ -22,7 +22,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/zremrangebyrank.md b/content/commands/zremrangebyrank.md index bf4a441985..4e07759187 100644 --- a/content/commands/zremrangebyrank.md +++ b/content/commands/zremrangebyrank.md @@ -22,7 +22,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/zremrangebyscore.md b/content/commands/zremrangebyscore.md index def557d76a..90eb98398d 100644 --- a/content/commands/zremrangebyscore.md +++ b/content/commands/zremrangebyscore.md @@ -22,7 +22,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/zrevrange.md b/content/commands/zrevrange.md index b1c30cc3d5..3507842f75 100644 --- a/content/commands/zrevrange.md +++ b/content/commands/zrevrange.md @@ -27,7 +27,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/zrevrangebylex.md b/content/commands/zrevrangebylex.md index 65aa6eda2a..c516869769 100644 --- a/content/commands/zrevrangebylex.md +++ b/content/commands/zrevrangebylex.md @@ -33,7 +33,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/zrevrangebyscore.md b/content/commands/zrevrangebyscore.md index 065ba5440c..f03b8a532c 100644 --- a/content/commands/zrevrangebyscore.md +++ b/content/commands/zrevrangebyscore.md @@ -38,7 +38,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/zrevrank.md b/content/commands/zrevrank.md index 41631ec7be..b0b5f047b9 100644 --- a/content/commands/zrevrank.md +++ b/content/commands/zrevrank.md @@ -24,7 +24,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/zscan.md b/content/commands/zscan.md index 349c1bd1d8..fb9293e5d9 100644 --- a/content/commands/zscan.md +++ b/content/commands/zscan.md @@ -29,7 +29,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/zscore.md b/content/commands/zscore.md index c7ec04c930..5733d8d3ca 100644 --- a/content/commands/zscore.md +++ b/content/commands/zscore.md @@ -19,7 +19,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: diff --git a/content/commands/zunion.md b/content/commands/zunion.md index 1b71be1e8c..0c787e731f 100644 --- a/content/commands/zunion.md +++ b/content/commands/zunion.md @@ -48,7 +48,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -75,7 +74,8 @@ key_specs: linkTitle: ZUNION since: 6.2.0 summary: Returns the union of multiple sorted sets. -syntax_fmt: "ZUNION numkeys key [key ...] [WEIGHTS\_weight [weight ...]]\n [AGGREGATE\_\ +syntax_fmt: "ZUNION numkeys key [key ...] [WEIGHTS\_weight [weight ...]] + [AGGREGATE\_\ ] [WITHSCORES]" syntax_str: "key [key ...] [WEIGHTS\_weight [weight ...]] [AGGREGATE\_] [WITHSCORES]" diff --git a/content/commands/zunionstore.md b/content/commands/zunionstore.md index 66cef5e465..8de6a51802 100644 --- a/content/commands/zunionstore.md +++ b/content/commands/zunionstore.md @@ -47,7 +47,6 @@ categories: - oss - rs - rc -- oss - kubernetes - clients command_flags: @@ -87,7 +86,8 @@ key_specs: linkTitle: ZUNIONSTORE since: 2.0.0 summary: Stores the union of multiple sorted sets in a key. -syntax_fmt: "ZUNIONSTORE destination numkeys key [key ...] [WEIGHTS\_weight\n [weight\ +syntax_fmt: "ZUNIONSTORE destination numkeys key [key ...] [WEIGHTS\_weight + [weight\ \ ...]] [AGGREGATE\_]" syntax_str: "numkeys key [key ...] [WEIGHTS\_weight [weight ...]] [AGGREGATE\_]" From 5c83e8f39c48883615c47c4d0184d0c2cde75c72 Mon Sep 17 00:00:00 2001 From: Andy Stark Date: Fri, 14 Nov 2025 14:54:49 +0000 Subject: [PATCH 7/7] Revert "DOC-5945 remove duplicate 'oss' categories from all command files (517 files)" This reverts commit e52e3370ee35e579826d596f739f99586b1c1736. --- content/commands/acl-cat.md | 1 + content/commands/acl-deluser.md | 1 + content/commands/acl-dryrun.md | 1 + content/commands/acl-genpass.md | 1 + content/commands/acl-getuser.md | 1 + content/commands/acl-help.md | 1 + content/commands/acl-list.md | 1 + content/commands/acl-load.md | 1 + content/commands/acl-log.md | 1 + content/commands/acl-save.md | 1 + content/commands/acl-setuser.md | 1 + content/commands/acl-users.md | 1 + content/commands/acl-whoami.md | 1 + content/commands/acl.md | 1 + content/commands/append.md | 1 + content/commands/asking.md | 1 + content/commands/auth.md | 1 + content/commands/bf.add.md | 1 + content/commands/bf.card.md | 1 + content/commands/bf.exists.md | 1 + content/commands/bf.info.md | 1 + content/commands/bf.insert.md | 7 +- content/commands/bf.loadchunk.md | 1 + content/commands/bf.madd.md | 1 + content/commands/bf.mexists.md | 1 + content/commands/bf.reserve.md | 4 +- content/commands/bf.scandump.md | 1 + content/commands/bgrewriteaof.md | 1 + content/commands/bgsave.md | 1 + content/commands/bitcount.md | 1 + content/commands/bitfield.md | 13 ++- content/commands/bitfield_ro.md | 1 + content/commands/bitop.md | 4 +- content/commands/bitpos.md | 1 + content/commands/blmove.md | 1 + content/commands/blmpop.md | 1 + content/commands/blpop.md | 1 + content/commands/brpop.md | 1 + content/commands/brpoplpush.md | 1 + content/commands/bzmpop.md | 1 + content/commands/bzpopmax.md | 1 + content/commands/bzpopmin.md | 1 + content/commands/cf.add.md | 1 + content/commands/cf.addnx.md | 1 + content/commands/cf.count.md | 1 + content/commands/cf.del.md | 1 + content/commands/cf.exists.md | 1 + content/commands/cf.info.md | 1 + content/commands/cf.insert.md | 1 + content/commands/cf.insertnx.md | 1 + content/commands/cf.loadchunk.md | 1 + content/commands/cf.mexists.md | 1 + content/commands/cf.reserve.md | 4 +- content/commands/cf.scandump.md | 1 + content/commands/client-caching.md | 1 + content/commands/client-getname.md | 1 + content/commands/client-getredir.md | 1 + content/commands/client-help.md | 1 + content/commands/client-id.md | 1 + content/commands/client-info.md | 1 + content/commands/client-kill.md | 16 ++-- content/commands/client-list.md | 4 +- content/commands/client-no-evict.md | 1 + content/commands/client-no-touch.md | 1 + content/commands/client-pause.md | 1 + content/commands/client-reply.md | 1 + content/commands/client-setinfo.md | 1 + content/commands/client-setname.md | 1 + content/commands/client-tracking.md | 4 +- content/commands/client-trackinginfo.md | 1 + content/commands/client-unblock.md | 1 + content/commands/client-unpause.md | 1 + content/commands/client.md | 1 + content/commands/cluster-addslots.md | 1 + content/commands/cluster-addslotsrange.md | 1 + content/commands/cluster-bumpepoch.md | 1 + .../commands/cluster-count-failure-reports.md | 1 + content/commands/cluster-countkeysinslot.md | 1 + content/commands/cluster-delslots.md | 1 + content/commands/cluster-delslotsrange.md | 1 + content/commands/cluster-failover.md | 1 + content/commands/cluster-flushslots.md | 1 + content/commands/cluster-forget.md | 1 + content/commands/cluster-getkeysinslot.md | 1 + content/commands/cluster-help.md | 1 + content/commands/cluster-info.md | 1 + content/commands/cluster-keyslot.md | 1 + content/commands/cluster-links.md | 1 + content/commands/cluster-meet.md | 1 + content/commands/cluster-myid.md | 1 + content/commands/cluster-myshardid.md | 1 + content/commands/cluster-nodes.md | 1 + content/commands/cluster-replicas.md | 1 + content/commands/cluster-replicate.md | 1 + content/commands/cluster-reset.md | 1 + content/commands/cluster-saveconfig.md | 1 + content/commands/cluster-set-config-epoch.md | 1 + content/commands/cluster-setslot.md | 4 +- content/commands/cluster-shards.md | 1 + content/commands/cluster-slaves.md | 1 + content/commands/cluster-slot-stats.md | 6 +- content/commands/cluster-slots.md | 1 + content/commands/cluster.md | 1 + content/commands/cms.incrby.md | 1 + content/commands/cms.info.md | 1 + content/commands/cms.initbydim.md | 1 + content/commands/cms.initbyprob.md | 1 + content/commands/cms.merge.md | 4 +- content/commands/cms.query.md | 1 + content/commands/command-count.md | 1 + content/commands/command-docs.md | 1 + content/commands/command-getkeys.md | 1 + content/commands/command-getkeysandflags.md | 1 + content/commands/command-help.md | 1 + content/commands/command-info.md | 1 + content/commands/command-list.md | 4 +- content/commands/command.md | 1 + content/commands/config-get.md | 1 + content/commands/config-help.md | 1 + content/commands/config-resetstat.md | 1 + content/commands/config-rewrite.md | 1 + content/commands/config-set.md | 1 + content/commands/config.md | 1 + content/commands/copy.md | 1 + content/commands/dbsize.md | 1 + content/commands/debug.md | 1 + content/commands/decr.md | 1 + content/commands/decrby.md | 1 + content/commands/del.md | 1 + content/commands/discard.md | 1 + content/commands/dump.md | 1 + content/commands/echo.md | 1 + content/commands/eval.md | 1 + content/commands/eval_ro.md | 1 + content/commands/evalsha.md | 1 + content/commands/evalsha_ro.md | 1 + content/commands/exec.md | 1 + content/commands/exists.md | 1 + content/commands/expire.md | 1 + content/commands/expireat.md | 1 + content/commands/expiretime.md | 1 + content/commands/failover.md | 1 + content/commands/fcall.md | 1 + content/commands/fcall_ro.md | 1 + content/commands/flushall.md | 1 + content/commands/flushdb.md | 1 + content/commands/ft._list.md | 1 + content/commands/ft.aggregate.md | 68 +++++--------- content/commands/ft.aliasadd.md | 1 + content/commands/ft.aliasdel.md | 1 + content/commands/ft.aliasupdate.md | 1 + content/commands/ft.alter.md | 1 + content/commands/ft.config-get.md | 1 + content/commands/ft.config-help.md | 1 + content/commands/ft.config-set.md | 1 + content/commands/ft.create.md | 59 ++++--------- content/commands/ft.cursor-del.md | 1 + content/commands/ft.cursor-read.md | 1 + content/commands/ft.dictadd.md | 1 + content/commands/ft.dictdel.md | 1 + content/commands/ft.dictdump.md | 1 + content/commands/ft.dropindex.md | 5 +- content/commands/ft.explain.md | 5 +- content/commands/ft.explaincli.md | 5 +- content/commands/ft.info.md | 1 + content/commands/ft.profile.md | 1 + content/commands/ft.search.md | 88 ++++++------------- content/commands/ft.spellcheck.md | 12 +-- content/commands/ft.sugadd.md | 6 +- content/commands/ft.sugdel.md | 1 + content/commands/ft.sugget.md | 10 +-- content/commands/ft.suglen.md | 1 + content/commands/ft.syndump.md | 1 + content/commands/ft.synupdate.md | 8 +- content/commands/ft.tagvals.md | 1 + content/commands/function-delete.md | 1 + content/commands/function-dump.md | 1 + content/commands/function-flush.md | 1 + content/commands/function-help.md | 1 + content/commands/function-kill.md | 1 + content/commands/function-list.md | 1 + content/commands/function-load.md | 1 + content/commands/function-restore.md | 1 + content/commands/function-stats.md | 1 + content/commands/function.md | 1 + content/commands/geoadd.md | 4 +- content/commands/geodist.md | 1 + content/commands/geohash.md | 1 + content/commands/geopos.md | 1 + content/commands/georadius.md | 7 +- content/commands/georadius_ro.md | 4 +- content/commands/georadiusbymember.md | 7 +- content/commands/georadiusbymember_ro.md | 4 +- content/commands/geosearch.md | 10 +-- content/commands/geosearchstore.md | 10 +-- content/commands/get.md | 1 + content/commands/getbit.md | 1 + content/commands/getdel.md | 1 + content/commands/getex.md | 4 +- content/commands/getrange.md | 1 + content/commands/getset.md | 1 + content/commands/hdel.md | 1 + content/commands/hello.md | 1 + content/commands/hexists.md | 1 + content/commands/hexpire.md | 4 +- content/commands/hexpireat.md | 4 +- content/commands/hexpiretime.md | 1 + content/commands/hget.md | 1 + content/commands/hgetall.md | 1 + content/commands/hgetdel.md | 1 + content/commands/hgetex.md | 5 +- content/commands/hincrby.md | 1 + content/commands/hincrbyfloat.md | 1 + content/commands/hkeys.md | 1 + content/commands/hlen.md | 1 + content/commands/hmget.md | 1 + content/commands/hmset.md | 1 + content/commands/hpersist.md | 1 + content/commands/hpexpire.md | 4 +- content/commands/hpexpireat.md | 4 +- content/commands/hpexpiretime.md | 1 + content/commands/hpttl.md | 1 + content/commands/hrandfield.md | 1 + content/commands/hscan.md | 1 + content/commands/hset.md | 1 + content/commands/hsetex.md | 7 +- content/commands/hsetnx.md | 1 + content/commands/hstrlen.md | 1 + content/commands/httl.md | 1 + content/commands/hvals.md | 1 + content/commands/incr.md | 1 + content/commands/incrby.md | 1 + content/commands/incrbyfloat.md | 1 + content/commands/info.md | 1 + content/commands/json.arrappend.md | 3 +- content/commands/json.arrindex.md | 1 + content/commands/json.arrinsert.md | 1 + content/commands/json.arrlen.md | 1 + content/commands/json.arrpop.md | 1 + content/commands/json.arrtrim.md | 1 + content/commands/json.clear.md | 1 + content/commands/json.debug-help.md | 1 + content/commands/json.debug-memory.md | 1 + content/commands/json.debug.md | 1 + content/commands/json.del.md | 1 + content/commands/json.forget.md | 1 + content/commands/json.get.md | 4 +- content/commands/json.merge.md | 1 + content/commands/json.mget.md | 1 + content/commands/json.mset.md | 1 + content/commands/json.numincrby.md | 1 + content/commands/json.nummultby.md | 1 + content/commands/json.objkeys.md | 1 + content/commands/json.objlen.md | 1 + content/commands/json.resp.md | 1 + content/commands/json.set.md | 1 + content/commands/json.strappend.md | 1 + content/commands/json.strlen.md | 1 + content/commands/json.toggle.md | 1 + content/commands/json.type.md | 1 + content/commands/keys.md | 1 + content/commands/lastsave.md | 1 + content/commands/latency-doctor.md | 1 + content/commands/latency-graph.md | 1 + content/commands/latency-help.md | 1 + content/commands/latency-histogram.md | 1 + content/commands/latency-history.md | 1 + content/commands/latency-latest.md | 1 + content/commands/latency-reset.md | 1 + content/commands/latency.md | 1 + content/commands/lcs.md | 1 + content/commands/lindex.md | 1 + content/commands/linsert.md | 1 + content/commands/llen.md | 1 + content/commands/lmove.md | 1 + content/commands/lmpop.md | 1 + content/commands/lolwut.md | 1 + content/commands/lpop.md | 1 + content/commands/lpos.md | 1 + content/commands/lpush.md | 1 + content/commands/lpushx.md | 1 + content/commands/lrange.md | 1 + content/commands/lrem.md | 1 + content/commands/lset.md | 1 + content/commands/ltrim.md | 1 + content/commands/memory-doctor.md | 1 + content/commands/memory-help.md | 1 + content/commands/memory-malloc-stats.md | 1 + content/commands/memory-purge.md | 1 + content/commands/memory-stats.md | 1 + content/commands/memory-usage.md | 1 + content/commands/memory.md | 1 + content/commands/mget.md | 1 + content/commands/migrate.md | 4 +- content/commands/module-help.md | 1 + content/commands/module-list.md | 1 + content/commands/module-load.md | 1 + content/commands/module-loadex.md | 4 +- content/commands/module-unload.md | 1 + content/commands/module.md | 1 + content/commands/monitor.md | 1 + content/commands/move.md | 1 + content/commands/mset.md | 1 + content/commands/msetnx.md | 1 + content/commands/multi.md | 1 + content/commands/object-encoding.md | 1 + content/commands/object-freq.md | 1 + content/commands/object-help.md | 1 + content/commands/object-idletime.md | 1 + content/commands/object-refcount.md | 1 + content/commands/object.md | 1 + content/commands/persist.md | 1 + content/commands/pexpire.md | 1 + content/commands/pexpireat.md | 1 + content/commands/pexpiretime.md | 1 + content/commands/pfadd.md | 1 + content/commands/pfcount.md | 1 + content/commands/pfdebug.md | 1 + content/commands/pfmerge.md | 1 + content/commands/pfselftest.md | 1 + content/commands/ping.md | 1 + content/commands/psetex.md | 1 + content/commands/psubscribe.md | 1 + content/commands/psync.md | 1 + content/commands/pttl.md | 1 + content/commands/publish.md | 1 + content/commands/pubsub-channels.md | 1 + content/commands/pubsub-help.md | 1 + content/commands/pubsub-numpat.md | 1 + content/commands/pubsub-numsub.md | 1 + content/commands/pubsub-shardchannels.md | 1 + content/commands/pubsub-shardnumsub.md | 1 + content/commands/pubsub.md | 1 + content/commands/punsubscribe.md | 1 + content/commands/quit.md | 1 + content/commands/randomkey.md | 1 + content/commands/readonly.md | 1 + content/commands/readwrite.md | 1 + content/commands/rename.md | 1 + content/commands/renamenx.md | 1 + content/commands/replconf.md | 1 + content/commands/replicaof.md | 1 + content/commands/reset.md | 1 + content/commands/restore-asking.md | 4 +- content/commands/restore.md | 4 +- content/commands/role.md | 1 + content/commands/rpop.md | 1 + content/commands/rpoplpush.md | 1 + content/commands/rpush.md | 1 + content/commands/rpushx.md | 1 + content/commands/sadd.md | 1 + content/commands/save.md | 1 + content/commands/scan.md | 1 + content/commands/scard.md | 1 + content/commands/script-debug.md | 1 + content/commands/script-exists.md | 1 + content/commands/script-flush.md | 1 + content/commands/script-help.md | 1 + content/commands/script-kill.md | 1 + content/commands/script-load.md | 1 + content/commands/script.md | 1 + content/commands/sdiff.md | 1 + content/commands/sdiffstore.md | 1 + content/commands/select.md | 1 + content/commands/set.md | 1 + content/commands/setbit.md | 1 + content/commands/setex.md | 1 + content/commands/setnx.md | 1 + content/commands/setrange.md | 1 + content/commands/shutdown.md | 1 + content/commands/sinter.md | 1 + content/commands/sintercard.md | 1 + content/commands/sinterstore.md | 1 + content/commands/sismember.md | 1 + content/commands/slaveof.md | 1 + content/commands/slowlog-get.md | 1 + content/commands/slowlog-help.md | 1 + content/commands/slowlog-len.md | 1 + content/commands/slowlog-reset.md | 1 + content/commands/slowlog.md | 1 + content/commands/smembers.md | 1 + content/commands/smismember.md | 1 + content/commands/smove.md | 1 + content/commands/sort.md | 4 +- content/commands/sort_ro.md | 4 +- content/commands/spop.md | 1 + content/commands/spublish.md | 1 + content/commands/srandmember.md | 1 + content/commands/srem.md | 1 + content/commands/sscan.md | 1 + content/commands/ssubscribe.md | 1 + content/commands/strlen.md | 1 + content/commands/subscribe.md | 1 + content/commands/substr.md | 1 + content/commands/sunion.md | 1 + content/commands/sunionstore.md | 1 + content/commands/sunsubscribe.md | 1 + content/commands/swapdb.md | 1 + content/commands/sync.md | 1 + content/commands/tdigest.add.md | 1 + content/commands/tdigest.byrank.md | 5 +- content/commands/tdigest.byrevrank.md | 9 +- content/commands/tdigest.cdf.md | 1 + content/commands/tdigest.create.md | 1 + content/commands/tdigest.info.md | 1 + content/commands/tdigest.max.md | 1 + content/commands/tdigest.merge.md | 4 +- content/commands/tdigest.min.md | 1 + content/commands/tdigest.quantile.md | 5 +- content/commands/tdigest.rank.md | 11 +-- content/commands/tdigest.reset.md | 1 + content/commands/tdigest.revrank.md | 7 +- content/commands/tdigest.trimmed_mean.md | 1 + content/commands/time.md | 1 + content/commands/topk.add.md | 1 + content/commands/topk.count.md | 1 + content/commands/topk.incrby.md | 1 + content/commands/topk.info.md | 1 + content/commands/topk.list.md | 1 + content/commands/topk.query.md | 1 + content/commands/topk.reserve.md | 1 + content/commands/touch.md | 1 + content/commands/ts.add.md | 35 +++----- content/commands/ts.alter.md | 23 ++--- content/commands/ts.create.md | 24 ++--- content/commands/ts.createrule.md | 14 ++- content/commands/ts.decrby.md | 27 ++---- content/commands/ts.del.md | 1 + content/commands/ts.deleterule.md | 1 + content/commands/ts.get.md | 5 +- content/commands/ts.incrby.md | 28 ++---- content/commands/ts.info.md | 5 +- content/commands/ts.madd.md | 1 + content/commands/ts.mget.md | 7 +- content/commands/ts.mrange.md | 40 +++------ content/commands/ts.mrevrange.md | 40 +++------ content/commands/ts.queryindex.md | 7 +- content/commands/ts.range.md | 25 ++---- content/commands/ts.revrange.md | 25 ++---- content/commands/ttl.md | 1 + content/commands/type.md | 1 + content/commands/unlink.md | 1 + content/commands/unsubscribe.md | 1 + content/commands/unwatch.md | 1 + content/commands/vadd.md | 14 ++- content/commands/vcard.md | 6 +- content/commands/vdim.md | 6 +- content/commands/vemb.md | 6 +- content/commands/vgetattr.md | 6 +- content/commands/vinfo.md | 6 +- content/commands/vismember.md | 4 +- content/commands/vlinks.md | 6 +- content/commands/vrandmember.md | 6 +- content/commands/vrem.md | 9 +- content/commands/vsetattr.md | 6 +- content/commands/vsim.md | 10 +-- content/commands/wait.md | 1 + content/commands/waitaof.md | 1 + content/commands/watch.md | 1 + content/commands/xack.md | 1 + content/commands/xackdel.md | 8 +- content/commands/xadd.md | 7 +- content/commands/xautoclaim.md | 4 +- content/commands/xclaim.md | 7 +- content/commands/xdel.md | 1 + content/commands/xdelex.md | 1 + content/commands/xgroup-create.md | 4 +- content/commands/xgroup-createconsumer.md | 1 + content/commands/xgroup-delconsumer.md | 1 + content/commands/xgroup-destroy.md | 1 + content/commands/xgroup-help.md | 1 + content/commands/xgroup-setid.md | 1 + content/commands/xgroup.md | 1 + content/commands/xinfo-consumers.md | 1 + content/commands/xinfo-groups.md | 1 + content/commands/xinfo-help.md | 1 + content/commands/xinfo-stream.md | 1 + content/commands/xinfo.md | 1 + content/commands/xlen.md | 1 + content/commands/xpending.md | 1 + content/commands/xrange.md | 1 + content/commands/xread.md | 4 +- content/commands/xreadgroup.md | 4 +- content/commands/xrevrange.md | 1 + content/commands/xsetid.md | 4 +- content/commands/xtrim.md | 4 +- content/commands/zadd.md | 4 +- content/commands/zcard.md | 1 + content/commands/zcount.md | 1 + content/commands/zdiff.md | 1 + content/commands/zdiffstore.md | 1 + content/commands/zincrby.md | 1 + content/commands/zinter.md | 4 +- content/commands/zintercard.md | 1 + content/commands/zinterstore.md | 4 +- content/commands/zlexcount.md | 1 + content/commands/zmpop.md | 1 + content/commands/zmscore.md | 1 + content/commands/zpopmax.md | 1 + content/commands/zpopmin.md | 1 + content/commands/zrandmember.md | 1 + content/commands/zrange.md | 4 +- content/commands/zrangebylex.md | 1 + content/commands/zrangebyscore.md | 1 + content/commands/zrangestore.md | 4 +- content/commands/zrank.md | 1 + content/commands/zrem.md | 1 + content/commands/zremrangebylex.md | 1 + content/commands/zremrangebyrank.md | 1 + content/commands/zremrangebyscore.md | 1 + content/commands/zrevrange.md | 1 + content/commands/zrevrangebylex.md | 1 + content/commands/zrevrangebyscore.md | 1 + content/commands/zrevrank.md | 1 + content/commands/zscan.md | 1 + content/commands/zscore.md | 1 + content/commands/zunion.md | 4 +- content/commands/zunionstore.md | 4 +- 518 files changed, 780 insertions(+), 600 deletions(-) diff --git a/content/commands/acl-cat.md b/content/commands/acl-cat.md index 552ea3569c..709677c373 100644 --- a/content/commands/acl-cat.md +++ b/content/commands/acl-cat.md @@ -14,6 +14,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/acl-deluser.md b/content/commands/acl-deluser.md index cadefe6e4c..826e16bce7 100644 --- a/content/commands/acl-deluser.md +++ b/content/commands/acl-deluser.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/acl-dryrun.md b/content/commands/acl-dryrun.md index 5e98761c90..e17ad6b2de 100644 --- a/content/commands/acl-dryrun.md +++ b/content/commands/acl-dryrun.md @@ -23,6 +23,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/acl-genpass.md b/content/commands/acl-genpass.md index 4650087822..1a32a7794b 100644 --- a/content/commands/acl-genpass.md +++ b/content/commands/acl-genpass.md @@ -14,6 +14,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/acl-getuser.md b/content/commands/acl-getuser.md index 718f24600a..32ffeb2f7b 100644 --- a/content/commands/acl-getuser.md +++ b/content/commands/acl-getuser.md @@ -15,6 +15,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/acl-help.md b/content/commands/acl-help.md index 95cfabc153..a14b075cb8 100644 --- a/content/commands/acl-help.md +++ b/content/commands/acl-help.md @@ -9,6 +9,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/acl-list.md b/content/commands/acl-list.md index 1d90289e59..f884ee9f1c 100644 --- a/content/commands/acl-list.md +++ b/content/commands/acl-list.md @@ -11,6 +11,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/acl-load.md b/content/commands/acl-load.md index 87fddc0728..934b67df87 100644 --- a/content/commands/acl-load.md +++ b/content/commands/acl-load.md @@ -11,6 +11,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/acl-log.md b/content/commands/acl-log.md index 128eec01b3..6ca6b068df 100644 --- a/content/commands/acl-log.md +++ b/content/commands/acl-log.md @@ -23,6 +23,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/acl-save.md b/content/commands/acl-save.md index 8c6b0a29de..0728ea55d4 100644 --- a/content/commands/acl-save.md +++ b/content/commands/acl-save.md @@ -11,6 +11,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/acl-setuser.md b/content/commands/acl-setuser.md index 7911f9d4c0..6353750d34 100644 --- a/content/commands/acl-setuser.md +++ b/content/commands/acl-setuser.md @@ -20,6 +20,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/acl-users.md b/content/commands/acl-users.md index 69e7a5dfe7..ebcb4be570 100644 --- a/content/commands/acl-users.md +++ b/content/commands/acl-users.md @@ -11,6 +11,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/acl-whoami.md b/content/commands/acl-whoami.md index cf955fb895..47b1605849 100644 --- a/content/commands/acl-whoami.md +++ b/content/commands/acl-whoami.md @@ -9,6 +9,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/acl.md b/content/commands/acl.md index 8bf87b6c21..9e6d822c6d 100644 --- a/content/commands/acl.md +++ b/content/commands/acl.md @@ -9,6 +9,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: Depends on subcommand. diff --git a/content/commands/append.md b/content/commands/append.md index 279cddba1a..d03fe53526 100644 --- a/content/commands/append.md +++ b/content/commands/append.md @@ -19,6 +19,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/asking.md b/content/commands/asking.md index 5736eb0e1f..43d9a0e3fe 100644 --- a/content/commands/asking.md +++ b/content/commands/asking.md @@ -10,6 +10,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/auth.md b/content/commands/auth.md index 23d877def4..473c0c8dc4 100644 --- a/content/commands/auth.md +++ b/content/commands/auth.md @@ -19,6 +19,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/bf.add.md b/content/commands/bf.add.md index 68c602ebd5..aa03bcf380 100644 --- a/content/commands/bf.add.md +++ b/content/commands/bf.add.md @@ -15,6 +15,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(k), where k is the number of hash functions used by the last sub-filter diff --git a/content/commands/bf.card.md b/content/commands/bf.card.md index 8f483eb816..3e2b67beb5 100644 --- a/content/commands/bf.card.md +++ b/content/commands/bf.card.md @@ -13,6 +13,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/bf.exists.md b/content/commands/bf.exists.md index 66f4674525..03ef51b15f 100644 --- a/content/commands/bf.exists.md +++ b/content/commands/bf.exists.md @@ -15,6 +15,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(k), where k is the number of hash functions used by the last sub-filter diff --git a/content/commands/bf.info.md b/content/commands/bf.info.md index 8a91c6b605..996cae9d97 100644 --- a/content/commands/bf.info.md +++ b/content/commands/bf.info.md @@ -32,6 +32,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/bf.insert.md b/content/commands/bf.insert.md index b2f4c3cd0d..942fd1a9ff 100644 --- a/content/commands/bf.insert.md +++ b/content/commands/bf.insert.md @@ -39,6 +39,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(k * n), where k is the number of hash functions and n is the number @@ -53,10 +54,8 @@ since: 1.0.0 stack_path: docs/data-types/probabilistic summary: Adds one or more items to a Bloom Filter. A filter will be created if it does not exist -syntax_fmt: "BF.INSERT key [CAPACITY\_capacity] [ERROR\_error] - [EXPANSION\_expansion]\ - \ [NOCREATE] [NONSCALING] ITEMS item [item - ...]" +syntax_fmt: "BF.INSERT key [CAPACITY\_capacity] [ERROR\_error]\n [EXPANSION\_expansion]\ + \ [NOCREATE] [NONSCALING] ITEMS item [item\n ...]" syntax_str: "[CAPACITY\_capacity] [ERROR\_error] [EXPANSION\_expansion] [NOCREATE]\ \ [NONSCALING] ITEMS item [item ...]" title: BF.INSERT diff --git a/content/commands/bf.loadchunk.md b/content/commands/bf.loadchunk.md index 34910f63f5..5631b1fd48 100644 --- a/content/commands/bf.loadchunk.md +++ b/content/commands/bf.loadchunk.md @@ -17,6 +17,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(n), where n is the capacity diff --git a/content/commands/bf.madd.md b/content/commands/bf.madd.md index ae24203b0f..6590d9ad29 100644 --- a/content/commands/bf.madd.md +++ b/content/commands/bf.madd.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(k * n), where k is the number of hash functions and n is the number diff --git a/content/commands/bf.mexists.md b/content/commands/bf.mexists.md index 942d486bad..bc7f0ac6f5 100644 --- a/content/commands/bf.mexists.md +++ b/content/commands/bf.mexists.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(k * n), where k is the number of hash functions and n is the number diff --git a/content/commands/bf.reserve.md b/content/commands/bf.reserve.md index 2c376bf472..32251d5ee4 100644 --- a/content/commands/bf.reserve.md +++ b/content/commands/bf.reserve.md @@ -25,6 +25,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) @@ -36,8 +37,7 @@ module: Bloom since: 1.0.0 stack_path: docs/data-types/probabilistic summary: Creates a new Bloom Filter -syntax_fmt: "BF.RESERVE key error_rate capacity [EXPANSION\_expansion] - [NONSCALING]" +syntax_fmt: "BF.RESERVE key error_rate capacity [EXPANSION\_expansion]\n [NONSCALING]" syntax_str: "error_rate capacity [EXPANSION\_expansion] [NONSCALING]" title: BF.RESERVE --- diff --git a/content/commands/bf.scandump.md b/content/commands/bf.scandump.md index 30218e9f77..3b6455d4cb 100644 --- a/content/commands/bf.scandump.md +++ b/content/commands/bf.scandump.md @@ -15,6 +15,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(n), where n is the capacity diff --git a/content/commands/bgrewriteaof.md b/content/commands/bgrewriteaof.md index e518dafdc8..5763da8650 100644 --- a/content/commands/bgrewriteaof.md +++ b/content/commands/bgrewriteaof.md @@ -11,6 +11,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/bgsave.md b/content/commands/bgsave.md index cb5c2d2738..7962f36c35 100644 --- a/content/commands/bgsave.md +++ b/content/commands/bgsave.md @@ -18,6 +18,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/bitcount.md b/content/commands/bitcount.md index a80fcf557a..4f1e749cdf 100644 --- a/content/commands/bitcount.md +++ b/content/commands/bitcount.md @@ -39,6 +39,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/bitfield.md b/content/commands/bitfield.md index 679fe081b2..459688355a 100644 --- a/content/commands/bitfield.md +++ b/content/commands/bitfield.md @@ -80,6 +80,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -108,14 +109,10 @@ key_specs: linkTitle: BITFIELD since: 3.2.0 summary: Performs arbitrary bitfield integer operations on strings. -syntax_fmt: "BITFIELD key [GET\_encoding offset | [OVERFLOW\_] -\ - \ - [GET\_encoding\ - \ offset | [OVERFLOW\_] - - ...]]" +syntax_fmt: "BITFIELD key [GET\_encoding offset | [OVERFLOW\_]\n\ + \ \n [GET\_encoding\ + \ offset | [OVERFLOW\_]\n \n ...]]" syntax_str: "[GET\_encoding offset | [OVERFLOW\_] [GET\_encoding offset | [OVERFLOW\_\ ] \ diff --git a/content/commands/bitfield_ro.md b/content/commands/bitfield_ro.md index e6f5da3814..46625a7545 100644 --- a/content/commands/bitfield_ro.md +++ b/content/commands/bitfield_ro.md @@ -29,6 +29,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/bitop.md b/content/commands/bitop.md index a759b6dc5b..e573944cc0 100644 --- a/content/commands/bitop.md +++ b/content/commands/bitop.md @@ -56,6 +56,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -93,8 +94,7 @@ key_specs: linkTitle: BITOP since: 2.6.0 summary: Performs bitwise operations on multiple strings, and stores the result. -syntax_fmt: BITOP destkey key - [key ...] +syntax_fmt: "BITOP destkey key [key ...]" syntax_str: destkey key [key ...] title: BITOP --- diff --git a/content/commands/bitpos.md b/content/commands/bitpos.md index 10a8fc472e..bdac00ee3d 100644 --- a/content/commands/bitpos.md +++ b/content/commands/bitpos.md @@ -46,6 +46,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/blmove.md b/content/commands/blmove.md index b6f4cd14c6..d49a73016b 100644 --- a/content/commands/blmove.md +++ b/content/commands/blmove.md @@ -46,6 +46,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/blmpop.md b/content/commands/blmpop.md index 8c20897153..75e1a3416e 100644 --- a/content/commands/blmpop.md +++ b/content/commands/blmpop.md @@ -40,6 +40,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/blpop.md b/content/commands/blpop.md index a38ab412bf..285df06ad5 100644 --- a/content/commands/blpop.md +++ b/content/commands/blpop.md @@ -21,6 +21,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/brpop.md b/content/commands/brpop.md index 1e35e1e7c5..76c275d390 100644 --- a/content/commands/brpop.md +++ b/content/commands/brpop.md @@ -21,6 +21,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/brpoplpush.md b/content/commands/brpoplpush.md index 6a050cc7ae..3751d9e221 100644 --- a/content/commands/brpoplpush.md +++ b/content/commands/brpoplpush.md @@ -24,6 +24,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/bzmpop.md b/content/commands/bzmpop.md index 83f15508c7..179f34f277 100644 --- a/content/commands/bzmpop.md +++ b/content/commands/bzmpop.md @@ -40,6 +40,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/bzpopmax.md b/content/commands/bzpopmax.md index 260f21f2ec..3d854296fd 100644 --- a/content/commands/bzpopmax.md +++ b/content/commands/bzpopmax.md @@ -21,6 +21,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/bzpopmin.md b/content/commands/bzpopmin.md index 8b0b545cae..268f5d6557 100644 --- a/content/commands/bzpopmin.md +++ b/content/commands/bzpopmin.md @@ -21,6 +21,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/cf.add.md b/content/commands/cf.add.md index bdf9d4cdd6..bde21d7555 100644 --- a/content/commands/cf.add.md +++ b/content/commands/cf.add.md @@ -15,6 +15,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(k + i), where k is the number of sub-filters and i is maxIterations diff --git a/content/commands/cf.addnx.md b/content/commands/cf.addnx.md index 83a4d0b920..9d10fb0121 100644 --- a/content/commands/cf.addnx.md +++ b/content/commands/cf.addnx.md @@ -15,6 +15,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(k + i), where k is the number of sub-filters and i is maxIterations diff --git a/content/commands/cf.count.md b/content/commands/cf.count.md index 7a20316646..3fe6d25777 100644 --- a/content/commands/cf.count.md +++ b/content/commands/cf.count.md @@ -15,6 +15,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(k), where k is the number of sub-filters diff --git a/content/commands/cf.del.md b/content/commands/cf.del.md index 306e781566..b39b41821a 100644 --- a/content/commands/cf.del.md +++ b/content/commands/cf.del.md @@ -15,6 +15,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(k), where k is the number of sub-filters diff --git a/content/commands/cf.exists.md b/content/commands/cf.exists.md index e09284f780..28ca0abfb3 100644 --- a/content/commands/cf.exists.md +++ b/content/commands/cf.exists.md @@ -15,6 +15,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(k), where k is the number of sub-filters diff --git a/content/commands/cf.info.md b/content/commands/cf.info.md index dd24fb1a63..4f9b14c0dc 100644 --- a/content/commands/cf.info.md +++ b/content/commands/cf.info.md @@ -13,6 +13,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/cf.insert.md b/content/commands/cf.insert.md index 457f5f08df..9f18a81471 100644 --- a/content/commands/cf.insert.md +++ b/content/commands/cf.insert.md @@ -27,6 +27,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(n * (k + i)), where n is the number of items, k is the number of sub-filters diff --git a/content/commands/cf.insertnx.md b/content/commands/cf.insertnx.md index a490bde939..f9f1c734cf 100644 --- a/content/commands/cf.insertnx.md +++ b/content/commands/cf.insertnx.md @@ -27,6 +27,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(n * (k + i)), where n is the number of items, k is the number of sub-filters diff --git a/content/commands/cf.loadchunk.md b/content/commands/cf.loadchunk.md index 66b0f62409..e4a279de06 100644 --- a/content/commands/cf.loadchunk.md +++ b/content/commands/cf.loadchunk.md @@ -17,6 +17,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(n), where n is the capacity diff --git a/content/commands/cf.mexists.md b/content/commands/cf.mexists.md index ed4e9537c4..28abd47fa0 100644 --- a/content/commands/cf.mexists.md +++ b/content/commands/cf.mexists.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(k * n), where k is the number of sub-filters and n is the number of diff --git a/content/commands/cf.reserve.md b/content/commands/cf.reserve.md index 25724cf647..1104d3e530 100644 --- a/content/commands/cf.reserve.md +++ b/content/commands/cf.reserve.md @@ -27,6 +27,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) @@ -38,8 +39,7 @@ module: Bloom since: 1.0.0 stack_path: docs/data-types/probabilistic summary: Creates a new Cuckoo Filter -syntax_fmt: "CF.RESERVE key capacity [BUCKETSIZE\_bucketsize] - [MAXITERATIONS\_\ +syntax_fmt: "CF.RESERVE key capacity [BUCKETSIZE\_bucketsize]\n [MAXITERATIONS\_\ maxiterations] [EXPANSION\_expansion]" syntax_str: "capacity [BUCKETSIZE\_bucketsize] [MAXITERATIONS\_maxiterations] [EXPANSION\_\ expansion]" diff --git a/content/commands/cf.scandump.md b/content/commands/cf.scandump.md index 9ee181bdf1..3ae65b33c6 100644 --- a/content/commands/cf.scandump.md +++ b/content/commands/cf.scandump.md @@ -15,6 +15,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(n), where n is the capacity diff --git a/content/commands/client-caching.md b/content/commands/client-caching.md index 954a61db9d..fbcab94b24 100644 --- a/content/commands/client-caching.md +++ b/content/commands/client-caching.md @@ -22,6 +22,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/client-getname.md b/content/commands/client-getname.md index 44c461dcab..b09bfb7547 100644 --- a/content/commands/client-getname.md +++ b/content/commands/client-getname.md @@ -10,6 +10,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/client-getredir.md b/content/commands/client-getredir.md index 221153bb19..4a91855cee 100644 --- a/content/commands/client-getredir.md +++ b/content/commands/client-getredir.md @@ -10,6 +10,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/client-help.md b/content/commands/client-help.md index 86591aae5a..bef46d9a5d 100644 --- a/content/commands/client-help.md +++ b/content/commands/client-help.md @@ -10,6 +10,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/client-id.md b/content/commands/client-id.md index c529fd30d7..16e5e69a34 100644 --- a/content/commands/client-id.md +++ b/content/commands/client-id.md @@ -10,6 +10,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/client-info.md b/content/commands/client-info.md index 61ba7686e3..f568737b4d 100644 --- a/content/commands/client-info.md +++ b/content/commands/client-info.md @@ -10,6 +10,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/client-kill.md b/content/commands/client-kill.md index fb4790ed64..53d7b74e76 100644 --- a/content/commands/client-kill.md +++ b/content/commands/client-kill.md @@ -93,6 +93,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -120,16 +121,11 @@ history: linkTitle: CLIENT KILL since: 2.4.0 summary: Terminates open connections. -syntax_fmt: "CLIENT KILL ] | [USER\_username] | [ADDR\_ip:port] | - [LADDR\_\ - ip:port] | [SKIPME\_] | [MAXAGE\_maxage] - [[ID\_client-id] | [TYPE\_\ - ] | [USER\_username] | [ADDR\_ip:port]\ - \ | [LADDR\_ip:port] | - [SKIPME\_] | [MAXAGE\_maxage] ...]>>" +syntax_fmt: "CLIENT KILL ] | [USER\_username] | [ADDR\_ip:port] |\n [LADDR\_\ + ip:port] | [SKIPME\_] | [MAXAGE\_maxage]\n [[ID\_client-id] | [TYPE\_\ + ] | [USER\_username] | [ADDR\_ip:port]\ + \ | [LADDR\_ip:port] |\n [SKIPME\_] | [MAXAGE\_maxage] ...]>>" syntax_str: '' title: CLIENT KILL --- diff --git a/content/commands/client-list.md b/content/commands/client-list.md index 4e3e4ee9f9..26029e0ca7 100644 --- a/content/commands/client-list.md +++ b/content/commands/client-list.md @@ -42,6 +42,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -72,8 +73,7 @@ history: linkTitle: CLIENT LIST since: 2.4.0 summary: Lists open connections. -syntax_fmt: "CLIENT LIST [TYPE\_] - [ID\_client-id\ +syntax_fmt: "CLIENT LIST [TYPE\_]\n [ID\_client-id\ \ [client-id ...]]" syntax_str: "[ID\_client-id [client-id ...]]" title: CLIENT LIST diff --git a/content/commands/client-no-evict.md b/content/commands/client-no-evict.md index ef46d20b40..14f56eb3d1 100644 --- a/content/commands/client-no-evict.md +++ b/content/commands/client-no-evict.md @@ -24,6 +24,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/client-no-touch.md b/content/commands/client-no-touch.md index 8d489a3e07..c609a24093 100644 --- a/content/commands/client-no-touch.md +++ b/content/commands/client-no-touch.md @@ -22,6 +22,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/client-pause.md b/content/commands/client-pause.md index 7fc070ed14..07b19a1ba2 100644 --- a/content/commands/client-pause.md +++ b/content/commands/client-pause.md @@ -29,6 +29,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/client-reply.md b/content/commands/client-reply.md index 5fe8f096f8..5f085cc56f 100644 --- a/content/commands/client-reply.md +++ b/content/commands/client-reply.md @@ -26,6 +26,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/client-setinfo.md b/content/commands/client-setinfo.md index 2a3c667b0a..b9b7f9c797 100644 --- a/content/commands/client-setinfo.md +++ b/content/commands/client-setinfo.md @@ -22,6 +22,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/client-setname.md b/content/commands/client-setname.md index ad42701b1a..eb5977a9b9 100644 --- a/content/commands/client-setname.md +++ b/content/commands/client-setname.md @@ -14,6 +14,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/client-tracking.md b/content/commands/client-tracking.md index 740b1855c5..c453c17a88 100644 --- a/content/commands/client-tracking.md +++ b/content/commands/client-tracking.md @@ -54,6 +54,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -67,8 +68,7 @@ hidden: false linkTitle: CLIENT TRACKING since: 6.0.0 summary: Controls server-assisted client-side caching for the connection. -syntax_fmt: "CLIENT TRACKING [REDIRECT\_client-id] [PREFIX\_prefix - [PREFIX\ +syntax_fmt: "CLIENT TRACKING [REDIRECT\_client-id] [PREFIX\_prefix\n [PREFIX\ \ prefix ...]] [BCAST] [OPTIN] [OPTOUT] [NOLOOP]" syntax_str: "[REDIRECT\_client-id] [PREFIX\_prefix [PREFIX prefix ...]] [BCAST] [OPTIN]\ \ [OPTOUT] [NOLOOP]" diff --git a/content/commands/client-trackinginfo.md b/content/commands/client-trackinginfo.md index 3749ed37bf..59a892d129 100644 --- a/content/commands/client-trackinginfo.md +++ b/content/commands/client-trackinginfo.md @@ -10,6 +10,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/client-unblock.md b/content/commands/client-unblock.md index 1be316295b..75b2ad936e 100644 --- a/content/commands/client-unblock.md +++ b/content/commands/client-unblock.md @@ -28,6 +28,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/client-unpause.md b/content/commands/client-unpause.md index 7b644557b2..c28afb9d47 100644 --- a/content/commands/client-unpause.md +++ b/content/commands/client-unpause.md @@ -12,6 +12,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/client.md b/content/commands/client.md index abc5826968..1c13b503bf 100644 --- a/content/commands/client.md +++ b/content/commands/client.md @@ -9,6 +9,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: Depends on subcommand. diff --git a/content/commands/cluster-addslots.md b/content/commands/cluster-addslots.md index e26b0632bb..305718290f 100644 --- a/content/commands/cluster-addslots.md +++ b/content/commands/cluster-addslots.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-addslotsrange.md b/content/commands/cluster-addslotsrange.md index db8a5e00e1..522e60f024 100644 --- a/content/commands/cluster-addslotsrange.md +++ b/content/commands/cluster-addslotsrange.md @@ -22,6 +22,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-bumpepoch.md b/content/commands/cluster-bumpepoch.md index de7dcffb8d..edfc1daf53 100644 --- a/content/commands/cluster-bumpepoch.md +++ b/content/commands/cluster-bumpepoch.md @@ -11,6 +11,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-count-failure-reports.md b/content/commands/cluster-count-failure-reports.md index 6181a90d3b..ae31d6989e 100644 --- a/content/commands/cluster-count-failure-reports.md +++ b/content/commands/cluster-count-failure-reports.md @@ -15,6 +15,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-countkeysinslot.md b/content/commands/cluster-countkeysinslot.md index 702507bea6..7a104b3fe9 100644 --- a/content/commands/cluster-countkeysinslot.md +++ b/content/commands/cluster-countkeysinslot.md @@ -13,6 +13,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-delslots.md b/content/commands/cluster-delslots.md index a376ec7459..6071c57c0a 100644 --- a/content/commands/cluster-delslots.md +++ b/content/commands/cluster-delslots.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-delslotsrange.md b/content/commands/cluster-delslotsrange.md index 82bbf6a781..0cb30b340d 100644 --- a/content/commands/cluster-delslotsrange.md +++ b/content/commands/cluster-delslotsrange.md @@ -22,6 +22,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-failover.md b/content/commands/cluster-failover.md index 8b0bc826ee..7aca1c0a12 100644 --- a/content/commands/cluster-failover.md +++ b/content/commands/cluster-failover.md @@ -24,6 +24,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-flushslots.md b/content/commands/cluster-flushslots.md index 2c7d92a4ec..c78a02dc76 100644 --- a/content/commands/cluster-flushslots.md +++ b/content/commands/cluster-flushslots.md @@ -11,6 +11,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-forget.md b/content/commands/cluster-forget.md index c3b6e703d1..47b6193927 100644 --- a/content/commands/cluster-forget.md +++ b/content/commands/cluster-forget.md @@ -15,6 +15,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-getkeysinslot.md b/content/commands/cluster-getkeysinslot.md index 7c906aa4ad..0ff2248d15 100644 --- a/content/commands/cluster-getkeysinslot.md +++ b/content/commands/cluster-getkeysinslot.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-help.md b/content/commands/cluster-help.md index 60f8bf174b..502ded8180 100644 --- a/content/commands/cluster-help.md +++ b/content/commands/cluster-help.md @@ -9,6 +9,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-info.md b/content/commands/cluster-info.md index 9b7d78367d..68275bc477 100644 --- a/content/commands/cluster-info.md +++ b/content/commands/cluster-info.md @@ -9,6 +9,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-keyslot.md b/content/commands/cluster-keyslot.md index c16f485487..b0d10ba78f 100644 --- a/content/commands/cluster-keyslot.md +++ b/content/commands/cluster-keyslot.md @@ -13,6 +13,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-links.md b/content/commands/cluster-links.md index bbc0e14a28..aaafe08ba8 100644 --- a/content/commands/cluster-links.md +++ b/content/commands/cluster-links.md @@ -9,6 +9,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-meet.md b/content/commands/cluster-meet.md index a823da6261..7a34280681 100644 --- a/content/commands/cluster-meet.md +++ b/content/commands/cluster-meet.md @@ -23,6 +23,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-myid.md b/content/commands/cluster-myid.md index 768defe87a..cfde39b385 100644 --- a/content/commands/cluster-myid.md +++ b/content/commands/cluster-myid.md @@ -9,6 +9,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-myshardid.md b/content/commands/cluster-myshardid.md index 693d5cf086..cc8f222605 100644 --- a/content/commands/cluster-myshardid.md +++ b/content/commands/cluster-myshardid.md @@ -9,6 +9,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-nodes.md b/content/commands/cluster-nodes.md index 8d766ff438..0bdefa6757 100644 --- a/content/commands/cluster-nodes.md +++ b/content/commands/cluster-nodes.md @@ -9,6 +9,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-replicas.md b/content/commands/cluster-replicas.md index 7eb87342d2..b353f0704f 100644 --- a/content/commands/cluster-replicas.md +++ b/content/commands/cluster-replicas.md @@ -15,6 +15,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-replicate.md b/content/commands/cluster-replicate.md index b8ec9e6b1b..23efd414e1 100644 --- a/content/commands/cluster-replicate.md +++ b/content/commands/cluster-replicate.md @@ -15,6 +15,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-reset.md b/content/commands/cluster-reset.md index ab0932928d..25d035687a 100644 --- a/content/commands/cluster-reset.md +++ b/content/commands/cluster-reset.md @@ -24,6 +24,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-saveconfig.md b/content/commands/cluster-saveconfig.md index 4260f3c384..df4c77e933 100644 --- a/content/commands/cluster-saveconfig.md +++ b/content/commands/cluster-saveconfig.md @@ -11,6 +11,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-set-config-epoch.md b/content/commands/cluster-set-config-epoch.md index 478e519687..8b36b2da5f 100644 --- a/content/commands/cluster-set-config-epoch.md +++ b/content/commands/cluster-set-config-epoch.md @@ -15,6 +15,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-setslot.md b/content/commands/cluster-setslot.md index 1305e1165b..d87cd892b9 100644 --- a/content/commands/cluster-setslot.md +++ b/content/commands/cluster-setslot.md @@ -34,6 +34,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -47,8 +48,7 @@ hidden: false linkTitle: CLUSTER SETSLOT since: 3.0.0 summary: Binds a hash slot to a node. -syntax_fmt: "CLUSTER SETSLOT slot " syntax_str: "" title: CLUSTER SETSLOT diff --git a/content/commands/cluster-shards.md b/content/commands/cluster-shards.md index 810e51518c..9a22c1541b 100644 --- a/content/commands/cluster-shards.md +++ b/content/commands/cluster-shards.md @@ -9,6 +9,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-slaves.md b/content/commands/cluster-slaves.md index af2894e7b5..90b8999420 100644 --- a/content/commands/cluster-slaves.md +++ b/content/commands/cluster-slaves.md @@ -15,6 +15,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster-slot-stats.md b/content/commands/cluster-slot-stats.md index 8c695fa788..4af78556e9 100644 --- a/content/commands/cluster-slot-stats.md +++ b/content/commands/cluster-slot-stats.md @@ -39,6 +39,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -84,9 +85,8 @@ reply_schema: since: 8.2.0 summary: Return an array of slot usage statistics for slots assigned to the current node. -syntax_fmt: "CLUSTER SLOT-STATS " +syntax_fmt: "CLUSTER SLOT-STATS " syntax_str: '' title: CLUSTER SLOT-STATS --- diff --git a/content/commands/cluster-slots.md b/content/commands/cluster-slots.md index ab9b1b6523..41712f59d9 100644 --- a/content/commands/cluster-slots.md +++ b/content/commands/cluster-slots.md @@ -9,6 +9,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/cluster.md b/content/commands/cluster.md index 56fd534ce7..2b2b49e75a 100644 --- a/content/commands/cluster.md +++ b/content/commands/cluster.md @@ -9,6 +9,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: Depends on subcommand. diff --git a/content/commands/cms.incrby.md b/content/commands/cms.incrby.md index 1df72b7c27..18a26133ee 100644 --- a/content/commands/cms.incrby.md +++ b/content/commands/cms.incrby.md @@ -20,6 +20,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(n) where n is the number of items diff --git a/content/commands/cms.info.md b/content/commands/cms.info.md index aa59b1328c..a7f0333826 100644 --- a/content/commands/cms.info.md +++ b/content/commands/cms.info.md @@ -13,6 +13,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/cms.initbydim.md b/content/commands/cms.initbydim.md index 3b017e9315..d0813364eb 100644 --- a/content/commands/cms.initbydim.md +++ b/content/commands/cms.initbydim.md @@ -17,6 +17,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/cms.initbyprob.md b/content/commands/cms.initbyprob.md index 7d63f59a0b..d44d420848 100644 --- a/content/commands/cms.initbyprob.md +++ b/content/commands/cms.initbyprob.md @@ -17,6 +17,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/cms.merge.md b/content/commands/cms.merge.md index 7f95fc7117..b9a947120b 100644 --- a/content/commands/cms.merge.md +++ b/content/commands/cms.merge.md @@ -27,6 +27,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(n) where n is the number of sketches @@ -38,8 +39,7 @@ module: Bloom since: 2.0.0 stack_path: docs/data-types/probabilistic summary: Merges several sketches into one sketch -syntax_fmt: "CMS.MERGE destination numKeys source [source ...] [WEIGHTS weight - \ +syntax_fmt: "CMS.MERGE destination numKeys source [source ...] [WEIGHTS weight\n \ \ [weight ...]]" syntax_str: numKeys source [source ...] [WEIGHTS weight [weight ...]] title: CMS.MERGE diff --git a/content/commands/cms.query.md b/content/commands/cms.query.md index b132684e6c..cdb47b067c 100644 --- a/content/commands/cms.query.md +++ b/content/commands/cms.query.md @@ -15,6 +15,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(n) where n is the number of items diff --git a/content/commands/command-count.md b/content/commands/command-count.md index 2fd0b11ddf..77e002b41a 100644 --- a/content/commands/command-count.md +++ b/content/commands/command-count.md @@ -10,6 +10,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/command-docs.md b/content/commands/command-docs.md index 2f4e2f7fac..f4d2aa1204 100644 --- a/content/commands/command-docs.md +++ b/content/commands/command-docs.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/command-getkeys.md b/content/commands/command-getkeys.md index e5e65c82f6..1b3c05d7b1 100644 --- a/content/commands/command-getkeys.md +++ b/content/commands/command-getkeys.md @@ -19,6 +19,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/command-getkeysandflags.md b/content/commands/command-getkeysandflags.md index 4a0699f0d6..e4008bf73f 100644 --- a/content/commands/command-getkeysandflags.md +++ b/content/commands/command-getkeysandflags.md @@ -19,6 +19,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/command-help.md b/content/commands/command-help.md index 3d4da1d77e..43e949a7a9 100644 --- a/content/commands/command-help.md +++ b/content/commands/command-help.md @@ -10,6 +10,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/command-info.md b/content/commands/command-info.md index f4f75613c3..8d788c67e5 100644 --- a/content/commands/command-info.md +++ b/content/commands/command-info.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/command-list.md b/content/commands/command-list.md index 369035c6a5..7180d14f5d 100644 --- a/content/commands/command-list.md +++ b/content/commands/command-list.md @@ -28,6 +28,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -42,8 +43,7 @@ hints: linkTitle: COMMAND LIST since: 7.0.0 summary: Returns a list of command names. -syntax_fmt: "COMMAND LIST [FILTERBY\_]" syntax_str: '' title: COMMAND LIST diff --git a/content/commands/command.md b/content/commands/command.md index 1def5413a5..e2967a16cb 100644 --- a/content/commands/command.md +++ b/content/commands/command.md @@ -10,6 +10,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/config-get.md b/content/commands/config-get.md index 547669f7df..a1f8175403 100644 --- a/content/commands/config-get.md +++ b/content/commands/config-get.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/config-help.md b/content/commands/config-help.md index 3726655a50..0646501f51 100644 --- a/content/commands/config-help.md +++ b/content/commands/config-help.md @@ -9,6 +9,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/config-resetstat.md b/content/commands/config-resetstat.md index b3c7cfca8a..1cd39322f6 100644 --- a/content/commands/config-resetstat.md +++ b/content/commands/config-resetstat.md @@ -11,6 +11,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/config-rewrite.md b/content/commands/config-rewrite.md index 7255f661e4..8d043fa5fc 100644 --- a/content/commands/config-rewrite.md +++ b/content/commands/config-rewrite.md @@ -11,6 +11,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/config-set.md b/content/commands/config-set.md index 5c16abb5f2..2dfa63f3df 100644 --- a/content/commands/config-set.md +++ b/content/commands/config-set.md @@ -22,6 +22,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/config.md b/content/commands/config.md index 0a8e2d3d43..740ff6b0a4 100644 --- a/content/commands/config.md +++ b/content/commands/config.md @@ -9,6 +9,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: Depends on subcommand. diff --git a/content/commands/copy.md b/content/commands/copy.md index 5599cbabde..c58beef355 100644 --- a/content/commands/copy.md +++ b/content/commands/copy.md @@ -30,6 +30,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/dbsize.md b/content/commands/dbsize.md index 97da76b49e..7b8232b8f8 100644 --- a/content/commands/dbsize.md +++ b/content/commands/dbsize.md @@ -11,6 +11,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/debug.md b/content/commands/debug.md index 6dcec987b1..ad6ea60900 100644 --- a/content/commands/debug.md +++ b/content/commands/debug.md @@ -11,6 +11,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/decr.md b/content/commands/decr.md index c61acb2d0c..80ea01fa21 100644 --- a/content/commands/decr.md +++ b/content/commands/decr.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/decrby.md b/content/commands/decrby.md index 33a521dc4b..e06ea76d8a 100644 --- a/content/commands/decrby.md +++ b/content/commands/decrby.md @@ -19,6 +19,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/del.md b/content/commands/del.md index 3a6904b66e..58d1094eb6 100644 --- a/content/commands/del.md +++ b/content/commands/del.md @@ -17,6 +17,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/discard.md b/content/commands/discard.md index c8c0bb8b80..2c05a930cc 100644 --- a/content/commands/discard.md +++ b/content/commands/discard.md @@ -10,6 +10,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/dump.md b/content/commands/dump.md index 1c0dd1c985..ca4cd73bf0 100644 --- a/content/commands/dump.md +++ b/content/commands/dump.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/echo.md b/content/commands/echo.md index e8296d1744..0ad2685045 100644 --- a/content/commands/echo.md +++ b/content/commands/echo.md @@ -14,6 +14,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/eval.md b/content/commands/eval.md index e6fd148186..c36bbbc907 100644 --- a/content/commands/eval.md +++ b/content/commands/eval.md @@ -28,6 +28,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/eval_ro.md b/content/commands/eval_ro.md index 4776662739..cf13072f27 100644 --- a/content/commands/eval_ro.md +++ b/content/commands/eval_ro.md @@ -28,6 +28,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/evalsha.md b/content/commands/evalsha.md index 688c7c8812..b9d00ad927 100644 --- a/content/commands/evalsha.md +++ b/content/commands/evalsha.md @@ -28,6 +28,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/evalsha_ro.md b/content/commands/evalsha_ro.md index 59ac0b2156..a368b5e9db 100644 --- a/content/commands/evalsha_ro.md +++ b/content/commands/evalsha_ro.md @@ -28,6 +28,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/exec.md b/content/commands/exec.md index 08c8548927..10a152d006 100644 --- a/content/commands/exec.md +++ b/content/commands/exec.md @@ -10,6 +10,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/exists.md b/content/commands/exists.md index 032e621cf2..3030df46c1 100644 --- a/content/commands/exists.md +++ b/content/commands/exists.md @@ -17,6 +17,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/expire.md b/content/commands/expire.md index 8a59e3da00..e79b32ed65 100644 --- a/content/commands/expire.md +++ b/content/commands/expire.md @@ -40,6 +40,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/expireat.md b/content/commands/expireat.md index 7f0c8cc187..531b390ea7 100644 --- a/content/commands/expireat.md +++ b/content/commands/expireat.md @@ -40,6 +40,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/expiretime.md b/content/commands/expiretime.md index 774acdf147..decf75cfff 100644 --- a/content/commands/expiretime.md +++ b/content/commands/expiretime.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/failover.md b/content/commands/failover.md index 9b70b6142d..fcf52bc013 100644 --- a/content/commands/failover.md +++ b/content/commands/failover.md @@ -38,6 +38,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/fcall.md b/content/commands/fcall.md index 8761b9c3fb..76eb1cc762 100644 --- a/content/commands/fcall.md +++ b/content/commands/fcall.md @@ -28,6 +28,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/fcall_ro.md b/content/commands/fcall_ro.md index 218877260b..10c85a723e 100644 --- a/content/commands/fcall_ro.md +++ b/content/commands/fcall_ro.md @@ -28,6 +28,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/flushall.md b/content/commands/flushall.md index 73185b3b05..5c282e2729 100644 --- a/content/commands/flushall.md +++ b/content/commands/flushall.md @@ -27,6 +27,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/flushdb.md b/content/commands/flushdb.md index 986c305e46..52ce0e15c2 100644 --- a/content/commands/flushdb.md +++ b/content/commands/flushdb.md @@ -27,6 +27,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/ft._list.md b/content/commands/ft._list.md index 7e9fc588b5..4c9099b771 100644 --- a/content/commands/ft._list.md +++ b/content/commands/ft._list.md @@ -10,6 +10,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/ft.aggregate.md b/content/commands/ft.aggregate.md index eebf497fd8..4e741aaed2 100644 --- a/content/commands/ft.aggregate.md +++ b/content/commands/ft.aggregate.md @@ -163,6 +163,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -178,51 +179,24 @@ since: 1.1.0 stack_path: docs/interact/search-and-query summary: Run a search query on an index and perform aggregate transformations on the results -syntax: "FT.AGGREGATE index query - [VERBATIM] - [LOAD count field [field ...]]\ - \ - [TIMEOUT timeout] - [GROUPBY nargs property [property ...] [REDUCE function\ - \ nargs arg [arg ...] [AS name] [REDUCE function nargs arg [arg ...] [AS name] ...]]\ - \ ...]] - [SORTBY nargs [property ASC | DESC [property ASC | DESC ...]] [MAX num]\ - \ [WITHCOUNT] - [APPLY expression AS name [APPLY expression AS name ...]] - \ - \ [LIMIT offset num] - [FILTER filter] - [WITHCURSOR [COUNT read_size] [MAXIDLE\ - \ idle_time]] - [PARAMS nargs name value [name value ...]] - [SCORER scorer] -\ - \ [ADDSCORES] - [DIALECT dialect] -" -syntax_fmt: "FT.AGGREGATE index query [VERBATIM] [LOAD\_count field [field ...]] -\ - \ [TIMEOUT\_timeout] [LOAD *] [GROUPBY\_nargs property [property ...] - [REDUCE\_\ - function nargs arg [arg ...] [AS\_name] [REDUCE\_function - nargs arg [arg ...]\ - \ [AS\_name] ...]] [GROUPBY\_nargs property - [property ...] [REDUCE\_function\ - \ nargs arg [arg ...] [AS\_name] - [REDUCE\_function nargs arg [arg ...] [AS\_\ - name] ...]] ...]] - [SORTBY\_nargs [property [property \ - \ ...]] - [MAX\_num]] [APPLY\_expression AS\_name [APPLY\_expression AS\_name -\ - \ ...]] [LIMIT offset num] [FILTER\_filter] [WITHCURSOR - [COUNT\_read_size] [MAXIDLE\_\ - idle_time]] [PARAMS nargs name value - [name value ...]] - [SCORER scorer] - [ADDSCORES] -\ - \ [DIALECT\_dialect]" +syntax: "FT.AGGREGATE index query \n [VERBATIM] \n [LOAD count field [field ...]]\ + \ \n [TIMEOUT timeout] \n [GROUPBY nargs property [property ...] [REDUCE function\ + \ nargs arg [arg ...] [AS name] [REDUCE function nargs arg [arg ...] [AS name]\ + \ ...]] ...]] \n [SORTBY nargs [property ASC | DESC [property ASC | DESC ...]]\ + \ [MAX num] [WITHCOUNT] \n [APPLY expression AS name [APPLY expression AS name\ + \ ...]] \n [LIMIT offset num] \n [FILTER filter] \n [WITHCURSOR [COUNT read_size]\ + \ [MAXIDLE idle_time]] \n [PARAMS nargs name value [name value ...]] \n [SCORER scorer]\n + \ [ADDSCORES] \n [DIALECT\ + \ dialect]\n" +syntax_fmt: "FT.AGGREGATE index query [VERBATIM] [LOAD\_count field [field ...]]\n\ + \ [TIMEOUT\_timeout] [LOAD *] [GROUPBY\_nargs property [property ...]\n [REDUCE\_\ + function nargs arg [arg ...] [AS\_name] [REDUCE\_function\n nargs arg [arg ...]\ + \ [AS\_name] ...]] [GROUPBY\_nargs property\n [property ...] [REDUCE\_function\ + \ nargs arg [arg ...] [AS\_name]\n [REDUCE\_function nargs arg [arg ...] [AS\_\ + name] ...]] ...]]\n [SORTBY\_nargs [property [property \ + \ ...]]\n [MAX\_num]] [APPLY\_expression AS\_name [APPLY\_expression AS\_name\n\ + \ ...]] [LIMIT offset num] [FILTER\_filter] [WITHCURSOR\n [COUNT\_read_size] [MAXIDLE\_\ + idle_time]] [PARAMS nargs name value\n [name value ...]]\n [SCORER scorer]\n [ADDSCORES]\n [DIALECT\_dialect]" syntax_str: "query [VERBATIM] [LOAD\_count field [field ...]] [TIMEOUT\_timeout] [LOAD\ \ *] [GROUPBY\_nargs property [property ...] [REDUCE\_function nargs arg [arg ...]\ \ [AS\_name] [REDUCE\_function nargs arg [arg ...] [AS\_name] ...]] [GROUPBY\_nargs\ @@ -230,8 +204,8 @@ syntax_str: "query [VERBATIM] [LOAD\_count field [field ...]] [TIMEOUT\_timeout] function nargs arg [arg ...] [AS\_name] ...]] ...]] [SORTBY\_nargs [property [property ...]] [MAX\_num]] [APPLY\_expression AS\_name [APPLY\_\ expression AS\_name ...]] [LIMIT offset num] [FILTER\_filter] [WITHCURSOR [COUNT\_\ - read_size] [MAXIDLE\_idle_time]] [PARAMS nargs name value [name value ...]] [SCORER\ - \ scorer] [ADDSCORES] [DIALECT\_dialect]" + read_size] [MAXIDLE\_idle_time]] [PARAMS nargs name value [name value ...]] [SCORER scorer] [ADDSCORES] [DIALECT\_\ + dialect]" title: FT.AGGREGATE --- diff --git a/content/commands/ft.aliasadd.md b/content/commands/ft.aliasadd.md index cc2349d884..f3fab6b90c 100644 --- a/content/commands/ft.aliasadd.md +++ b/content/commands/ft.aliasadd.md @@ -13,6 +13,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/ft.aliasdel.md b/content/commands/ft.aliasdel.md index 9a8b6169f2..df5c6de733 100644 --- a/content/commands/ft.aliasdel.md +++ b/content/commands/ft.aliasdel.md @@ -11,6 +11,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/ft.aliasupdate.md b/content/commands/ft.aliasupdate.md index 62a40004b1..d05868a4c3 100644 --- a/content/commands/ft.aliasupdate.md +++ b/content/commands/ft.aliasupdate.md @@ -13,6 +13,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/ft.alter.md b/content/commands/ft.alter.md index f73ecfb730..9d830786e3 100644 --- a/content/commands/ft.alter.md +++ b/content/commands/ft.alter.md @@ -25,6 +25,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(N) where N is the number of keys in the keyspace diff --git a/content/commands/ft.config-get.md b/content/commands/ft.config-get.md index 9e8d16653a..95e79a9041 100644 --- a/content/commands/ft.config-get.md +++ b/content/commands/ft.config-get.md @@ -12,6 +12,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/ft.config-help.md b/content/commands/ft.config-help.md index d074864cb7..e980ffaa4c 100644 --- a/content/commands/ft.config-help.md +++ b/content/commands/ft.config-help.md @@ -12,6 +12,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/ft.config-set.md b/content/commands/ft.config-set.md index 2607616a42..460c277b9e 100644 --- a/content/commands/ft.config-set.md +++ b/content/commands/ft.config-set.md @@ -14,6 +14,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/ft.create.md b/content/commands/ft.create.md index 171b4135e1..6453a369ff 100644 --- a/content/commands/ft.create.md +++ b/content/commands/ft.create.md @@ -149,6 +149,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(K) at creation where K is the number of fields, O(N) if scanning the @@ -167,49 +168,21 @@ module: Search since: 1.0.0 stack_path: docs/interact/search-and-query summary: Creates an index with the given spec -syntax: "FT.CREATE index - [ON HASH | JSON] - [PREFIX count prefix [prefix ...]]\ - \ - [FILTER {filter}] - [LANGUAGE default_lang] - [LANGUAGE_FIELD lang_attribute]\ - \ - [SCORE default_score] - [SCORE_FIELD score_attribute] - [PAYLOAD_FIELD\ - \ payload_attribute] - [MAXTEXTFIELDS] - [TEMPORARY seconds] - [NOOFFSETS]\ - \ - [NOHL] - [NOFIELDS] - [NOFREQS] - [STOPWORDS count [stopword ...]] -\ - \ [SKIPINITIALSCAN] - SCHEMA field_name [AS alias] TEXT | TAG | NUMERIC | GEO\ - \ | VECTOR | GEOSHAPE [ SORTABLE [UNF]] - [NOINDEX] [ field_name [AS alias] TEXT\ - \ | TAG | NUMERIC | GEO | VECTOR | GEOSHAPE [ SORTABLE [UNF]] [NOINDEX] ...] -" -syntax_fmt: "FT.CREATE index [ON\_] [PREFIX\_count prefix [prefix - \ - \ ...]] [FILTER\_filter] [LANGUAGE\_default_lang] - [LANGUAGE_FIELD\_lang_attribute]\ - \ [SCORE\_default_score] - [SCORE_FIELD\_score_attribute] [PAYLOAD_FIELD\_payload_attribute] -\ - \ [MAXTEXTFIELDS] [TEMPORARY\_seconds] [NOOFFSETS] [NOHL] [NOFIELDS] - [NOFREQS]\ - \ [STOPWORDS\_count [stopword [stopword ...]]] - [SKIPINITIALSCAN] SCHEMA field_name\ - \ [AS\_alias] [WITHSUFFIXTRIE] [SORTABLE\ - \ [UNF]] - [NOINDEX] [field_name [AS\_alias] \ +syntax: "FT.CREATE index \n [ON HASH | JSON] \n [PREFIX count prefix [prefix ...]]\ + \ \n [FILTER {filter}]\n [LANGUAGE default_lang] \n [LANGUAGE_FIELD lang_attribute]\ + \ \n [SCORE default_score] \n [SCORE_FIELD score_attribute] \n [PAYLOAD_FIELD\ + \ payload_attribute] \n [MAXTEXTFIELDS] \n [TEMPORARY seconds] \n [NOOFFSETS]\ + \ \n [NOHL] \n [NOFIELDS] \n [NOFREQS] \n [STOPWORDS count [stopword ...]] \n\ + \ [SKIPINITIALSCAN]\n SCHEMA field_name [AS alias] TEXT | TAG | NUMERIC | GEO\ + \ | VECTOR | GEOSHAPE [ SORTABLE [UNF]] \n [NOINDEX] [ field_name [AS alias] TEXT\ + \ | TAG | NUMERIC | GEO | VECTOR | GEOSHAPE [ SORTABLE [UNF]] [NOINDEX] ...]\n" +syntax_fmt: "FT.CREATE index [ON\_] [PREFIX\_count prefix [prefix\n \ + \ ...]] [FILTER\_filter] [LANGUAGE\_default_lang]\n [LANGUAGE_FIELD\_lang_attribute]\ + \ [SCORE\_default_score]\n [SCORE_FIELD\_score_attribute] [PAYLOAD_FIELD\_payload_attribute]\n\ + \ [MAXTEXTFIELDS] [TEMPORARY\_seconds] [NOOFFSETS] [NOHL] [NOFIELDS]\n [NOFREQS]\ + \ [STOPWORDS\_count [stopword [stopword ...]]]\n [SKIPINITIALSCAN] SCHEMA field_name\ + \ [AS\_alias] [WITHSUFFIXTRIE] [SORTABLE\ + \ [UNF]]\n [NOINDEX] [field_name [AS\_alias] \ \ [WITHSUFFIXTRIE] [SORTABLE [UNF]] [NOINDEX] ...]" syntax_str: "[ON\_] [PREFIX\_count prefix [prefix ...]] [FILTER\_filter]\ \ [LANGUAGE\_default_lang] [LANGUAGE_FIELD\_lang_attribute] [SCORE\_default_score]\ diff --git a/content/commands/ft.cursor-del.md b/content/commands/ft.cursor-del.md index 13e603086f..b632e6d313 100644 --- a/content/commands/ft.cursor-del.md +++ b/content/commands/ft.cursor-del.md @@ -14,6 +14,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/ft.cursor-read.md b/content/commands/ft.cursor-read.md index c3159905d3..69a1434655 100644 --- a/content/commands/ft.cursor-read.md +++ b/content/commands/ft.cursor-read.md @@ -18,6 +18,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/ft.dictadd.md b/content/commands/ft.dictadd.md index 601a54a576..88aa4ea8ca 100644 --- a/content/commands/ft.dictadd.md +++ b/content/commands/ft.dictadd.md @@ -14,6 +14,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/ft.dictdel.md b/content/commands/ft.dictdel.md index 242eec080d..64db142410 100644 --- a/content/commands/ft.dictdel.md +++ b/content/commands/ft.dictdel.md @@ -14,6 +14,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/ft.dictdump.md b/content/commands/ft.dictdump.md index 7420bb30eb..a5d02c730d 100644 --- a/content/commands/ft.dictdump.md +++ b/content/commands/ft.dictdump.md @@ -11,6 +11,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/ft.dropindex.md b/content/commands/ft.dropindex.md index b6ffe783ef..730ce99cea 100644 --- a/content/commands/ft.dropindex.md +++ b/content/commands/ft.dropindex.md @@ -21,6 +21,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) or O(N) if documents are deleted, where N is the number of keys in @@ -33,9 +34,7 @@ module: Search since: 2.0.0 stack_path: docs/interact/search-and-query summary: Deletes the index -syntax: "FT.DROPINDEX index - [DD] -" +syntax: "FT.DROPINDEX index \n [DD]\n" syntax_fmt: FT.DROPINDEX index [DD] syntax_str: '[DD]' title: FT.DROPINDEX diff --git a/content/commands/ft.explain.md b/content/commands/ft.explain.md index 0332e21a86..019545db2e 100644 --- a/content/commands/ft.explain.md +++ b/content/commands/ft.explain.md @@ -18,6 +18,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -31,9 +32,7 @@ module: Search since: 1.0.0 stack_path: docs/interact/search-and-query summary: Returns the execution plan for a complex query -syntax: "FT.EXPLAIN index query - [DIALECT dialect] -" +syntax: "FT.EXPLAIN index query \n [DIALECT dialect]\n" syntax_fmt: "FT.EXPLAIN index query [DIALECT\_dialect]" syntax_str: "query [DIALECT\_dialect]" title: FT.EXPLAIN diff --git a/content/commands/ft.explaincli.md b/content/commands/ft.explaincli.md index 56c879ebb6..7fe20353db 100644 --- a/content/commands/ft.explaincli.md +++ b/content/commands/ft.explaincli.md @@ -18,6 +18,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -31,9 +32,7 @@ module: Search since: 1.0.0 stack_path: docs/interact/search-and-query summary: Returns the execution plan for a complex query -syntax: "FT.EXPLAINCLI index query - [DIALECT dialect] -" +syntax: "FT.EXPLAINCLI index query \n [DIALECT dialect]\n" syntax_fmt: "FT.EXPLAINCLI index query [DIALECT\_dialect]" syntax_str: "query [DIALECT\_dialect]" title: FT.EXPLAINCLI diff --git a/content/commands/ft.info.md b/content/commands/ft.info.md index 05d1b7cdf4..16e6f8e8a6 100644 --- a/content/commands/ft.info.md +++ b/content/commands/ft.info.md @@ -11,6 +11,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/ft.profile.md b/content/commands/ft.profile.md index f025f7e404..cb59cc24e6 100644 --- a/content/commands/ft.profile.md +++ b/content/commands/ft.profile.md @@ -30,6 +30,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/ft.search.md b/content/commands/ft.search.md index 1f2da26698..a6af70a406 100644 --- a/content/commands/ft.search.md +++ b/content/commands/ft.search.md @@ -255,6 +255,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -269,7 +270,7 @@ history: - Deprecated `WITHPAYLOADS` and `PAYLOAD` arguments - - 2.6 - Deprecated `GEOFILTER` argument -- - '2.10' +- - "2.10" - Deprecated `FILTER` argument linkTitle: FT.SEARCH module: Search @@ -277,68 +278,29 @@ since: 1.0.0 stack_path: docs/interact/search-and-query summary: Searches the index with a textual query, returning either documents or just ids -syntax: "FT.SEARCH index query - [NOCONTENT] - [VERBATIM] - [NOSTOPWORDS] -\ - \ [WITHSCORES] - [WITHPAYLOADS] - [WITHSORTKEYS] - [FILTER numeric_field\ - \ min max [ FILTER numeric_field min max ...]] - [GEOFILTER geo_field lon lat\ - \ radius m | km | mi | ft [ GEOFILTER geo_field lon lat radius m | km | mi | ft\ - \ ...]] - [INKEYS count key [key ...]] - [INFIELDS count field [field ...]]\ - \ - [RETURN count identifier [AS property] [ identifier [AS property] ...]] -\ - \ [SUMMARIZE [ FIELDS count field [field ...]] [FRAGS num] [LEN fragsize] [SEPARATOR\ - \ separator]] - [HIGHLIGHT [ FIELDS count field [field ...]] [ TAGS open close]]\ - \ - [SLOP slop] - [TIMEOUT timeout] - [INORDER] - [LANGUAGE language] -\ - \ [EXPANDER expander] - [SCORER scorer] - [EXPLAINSCORE] - [PAYLOAD payload]\ - \ - [SORTBY sortby [ ASC | DESC] [WITHCOUNT]] - [LIMIT offset num] - [PARAMS\ - \ nargs name value [ name value ...]] - [DIALECT dialect] -" -syntax_fmt: "FT.SEARCH index query [NOCONTENT] [VERBATIM] [NOSTOPWORDS] - [WITHSCORES]\ - \ [WITHPAYLOADS] [WITHSORTKEYS] [FILTER\_numeric_field - min max [FILTER\_numeric_field\ - \ min max ...]] [GEOFILTER\_geo_field - lon lat radius [GEOFILTER\_\ - geo_field lon lat - radius ...]] [INKEYS\_count key [key ...]] -\ - \ [INFIELDS\_count field [field ...]] [RETURN\_count identifier - [AS\_property]\ - \ [identifier [AS\_property] ...]] [SUMMARIZE - [FIELDS\_count field [field ...]]\ - \ [FRAGS\_num] [LEN\_fragsize] - [SEPARATOR\_separator]] [HIGHLIGHT [FIELDS\_count\ - \ field [field ...]] - [TAGS open close]] [SLOP\_slop] [TIMEOUT\_timeout] [INORDER] -\ - \ [LANGUAGE\_language] [EXPANDER\_expander] [SCORER\_scorer] - [EXPLAINSCORE]\ - \ [PAYLOAD\_payload] [SORTBY\_sortby [ASC | DESC]] - [LIMIT offset num] [PARAMS\ - \ nargs name value [name value ...]] - [DIALECT\_dialect]" +syntax: "FT.SEARCH index query \n [NOCONTENT] \n [VERBATIM] \n [NOSTOPWORDS] \n [WITHSCORES]\ + \ \n [WITHPAYLOADS] \n [WITHSORTKEYS] \n [FILTER numeric_field min max [ FILTER\ + \ numeric_field min max ...]] \n [GEOFILTER geo_field lon lat radius m | km | mi\ + \ | ft [ GEOFILTER geo_field lon lat radius m | km | mi | ft ...]] \n [INKEYS count\ + \ key [key ...]] \n [INFIELDS count field [field ...]] \n [RETURN count identifier\ + \ [AS property] [ identifier [AS property] ...]] \n [SUMMARIZE [ FIELDS count field\ + \ [field ...]] [FRAGS num] [LEN fragsize] [SEPARATOR separator]] \n [HIGHLIGHT\ + \ [ FIELDS count field [field ...]] [ TAGS open close]] \n [SLOP slop] \n [TIMEOUT\ + \ timeout] \n [INORDER] \n [LANGUAGE language] \n [EXPANDER expander] \n [SCORER\ + \ scorer] \n [EXPLAINSCORE] \n [PAYLOAD payload] \n [SORTBY sortby [ ASC | DESC]\ + \ [WITHCOUNT]] \n [LIMIT offset num] \n [PARAMS nargs name value [ name value\ + \ ...]] \n [DIALECT dialect]\n" +syntax_fmt: "FT.SEARCH index query [NOCONTENT] [VERBATIM] [NOSTOPWORDS]\n [WITHSCORES]\ + \ [WITHPAYLOADS] [WITHSORTKEYS] [FILTER\_numeric_field\n min max [FILTER\_numeric_field\ + \ min max ...]] [GEOFILTER\_geo_field\n lon lat radius [GEOFILTER\_\ + geo_field lon lat\n radius ...]] [INKEYS\_count key [key ...]]\n\ + \ [INFIELDS\_count field [field ...]] [RETURN\_count identifier\n [AS\_property]\ + \ [identifier [AS\_property] ...]] [SUMMARIZE\n [FIELDS\_count field [field ...]]\ + \ [FRAGS\_num] [LEN\_fragsize]\n [SEPARATOR\_separator]] [HIGHLIGHT [FIELDS\_count\ + \ field [field ...]]\n [TAGS open close]] [SLOP\_slop] [TIMEOUT\_timeout] [INORDER]\n\ + \ [LANGUAGE\_language] [EXPANDER\_expander] [SCORER\_scorer]\n [EXPLAINSCORE]\ + \ [PAYLOAD\_payload] [SORTBY\_sortby [ASC | DESC]]\n [LIMIT offset num] [PARAMS\ + \ nargs name value [name value ...]]\n [DIALECT\_dialect]" syntax_str: "query [NOCONTENT] [VERBATIM] [NOSTOPWORDS] [WITHSCORES] [WITHPAYLOADS]\ \ [WITHSORTKEYS] [FILTER\_numeric_field min max [FILTER\_numeric_field min max ...]]\ \ [GEOFILTER\_geo_field lon lat radius [GEOFILTER\_geo_field\ diff --git a/content/commands/ft.spellcheck.md b/content/commands/ft.spellcheck.md index e2348ad1a2..9c0119146f 100644 --- a/content/commands/ft.spellcheck.md +++ b/content/commands/ft.spellcheck.md @@ -42,6 +42,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -57,14 +58,9 @@ since: 1.4.0 stack_path: docs/interact/search-and-query summary: Performs spelling correction on a query, returning suggestions for misspelled terms -syntax: "FT.SPELLCHECK index query - [DISTANCE distance] - [TERMS INCLUDE | EXCLUDE\ - \ dictionary [terms [terms ...]]] - [DIALECT dialect] -" -syntax_fmt: "FT.SPELLCHECK index query [DISTANCE\_distance] [TERMS\_ dictionary [terms [terms ...]]] [DIALECT\_dialect]" syntax_str: "query [DISTANCE\_distance] [TERMS\_ dictionary [terms\ \ [terms ...]]] [DIALECT\_dialect]" diff --git a/content/commands/ft.sugadd.md b/content/commands/ft.sugadd.md index 1d00691646..95b3908863 100644 --- a/content/commands/ft.sugadd.md +++ b/content/commands/ft.sugadd.md @@ -27,6 +27,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) @@ -38,10 +39,7 @@ module: Search since: 1.0.0 stack_path: docs/interact/search-and-query summary: Adds a suggestion string to an auto-complete suggestion dictionary -syntax: "FT.SUGADD key string score - [INCR] - [PAYLOAD payload] -" +syntax: "FT.SUGADD key string score \n [INCR] \n [PAYLOAD payload]\n" syntax_fmt: "FT.SUGADD key string score [INCR] [PAYLOAD\_payload]" syntax_str: "string score [INCR] [PAYLOAD\_payload]" title: FT.SUGADD diff --git a/content/commands/ft.sugdel.md b/content/commands/ft.sugdel.md index 43c8ddc52e..a8e8b798e7 100644 --- a/content/commands/ft.sugdel.md +++ b/content/commands/ft.sugdel.md @@ -14,6 +14,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/ft.sugget.md b/content/commands/ft.sugget.md index c15c1b8f71..091dfb22e6 100644 --- a/content/commands/ft.sugget.md +++ b/content/commands/ft.sugget.md @@ -29,6 +29,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -42,13 +43,8 @@ module: Search since: 1.0.0 stack_path: docs/interact/search-and-query summary: Gets completion suggestions for a prefix -syntax: "FT.SUGGET key prefix - [FUZZY] - [WITHSCORES] - [WITHPAYLOADS] - \ - \ [MAX max] -" +syntax: "FT.SUGGET key prefix \n [FUZZY] \n [WITHSCORES] \n [WITHPAYLOADS] \n \ + \ [MAX max]\n" syntax_fmt: "FT.SUGGET key prefix [FUZZY] [WITHSCORES] [WITHPAYLOADS] [MAX\_max]" syntax_str: "prefix [FUZZY] [WITHSCORES] [WITHPAYLOADS] [MAX\_max]" title: FT.SUGGET diff --git a/content/commands/ft.suglen.md b/content/commands/ft.suglen.md index f724d513b9..df3f491339 100644 --- a/content/commands/ft.suglen.md +++ b/content/commands/ft.suglen.md @@ -11,6 +11,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/ft.syndump.md b/content/commands/ft.syndump.md index 570074c8b8..cdbc20b89c 100644 --- a/content/commands/ft.syndump.md +++ b/content/commands/ft.syndump.md @@ -11,6 +11,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/ft.synupdate.md b/content/commands/ft.synupdate.md index 143de716ae..718a2d4c8e 100644 --- a/content/commands/ft.synupdate.md +++ b/content/commands/ft.synupdate.md @@ -20,6 +20,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -33,11 +34,8 @@ module: Search since: 1.2.0 stack_path: docs/interact/search-and-query summary: Creates or updates a synonym group with additional terms -syntax: "FT.SYNUPDATE index synonym_group_id - [SKIPINITIALSCAN] term [term ...] -" -syntax_fmt: "FT.SYNUPDATE index synonym_group_id [SKIPINITIALSCAN] term [term - ...]" +syntax: "FT.SYNUPDATE index synonym_group_id \n [SKIPINITIALSCAN] term [term ...]\n" +syntax_fmt: "FT.SYNUPDATE index synonym_group_id [SKIPINITIALSCAN] term [term\n ...]" syntax_str: synonym_group_id [SKIPINITIALSCAN] term [term ...] title: FT.SYNUPDATE --- diff --git a/content/commands/ft.tagvals.md b/content/commands/ft.tagvals.md index dd3e03bb1e..4b3361c0c3 100644 --- a/content/commands/ft.tagvals.md +++ b/content/commands/ft.tagvals.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/function-delete.md b/content/commands/function-delete.md index 6258cf890b..8c72cc730d 100644 --- a/content/commands/function-delete.md +++ b/content/commands/function-delete.md @@ -15,6 +15,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/function-dump.md b/content/commands/function-dump.md index 59419ce7f1..7caf35533b 100644 --- a/content/commands/function-dump.md +++ b/content/commands/function-dump.md @@ -10,6 +10,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/function-flush.md b/content/commands/function-flush.md index c3d14b3a3c..6904fea217 100644 --- a/content/commands/function-flush.md +++ b/content/commands/function-flush.md @@ -24,6 +24,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/function-help.md b/content/commands/function-help.md index ff1c977510..89da0ac212 100644 --- a/content/commands/function-help.md +++ b/content/commands/function-help.md @@ -10,6 +10,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/function-kill.md b/content/commands/function-kill.md index 09ec179af5..bbb90c21b1 100644 --- a/content/commands/function-kill.md +++ b/content/commands/function-kill.md @@ -10,6 +10,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/function-list.md b/content/commands/function-list.md index 325ba19a60..ab3c39e1e3 100644 --- a/content/commands/function-list.md +++ b/content/commands/function-list.md @@ -21,6 +21,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/function-load.md b/content/commands/function-load.md index e644e8a08f..69765c5d7c 100644 --- a/content/commands/function-load.md +++ b/content/commands/function-load.md @@ -20,6 +20,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/function-restore.md b/content/commands/function-restore.md index 6047faed1a..26c50cc436 100644 --- a/content/commands/function-restore.md +++ b/content/commands/function-restore.md @@ -31,6 +31,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/function-stats.md b/content/commands/function-stats.md index 78b805fad9..599c3a15b8 100644 --- a/content/commands/function-stats.md +++ b/content/commands/function-stats.md @@ -10,6 +10,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/function.md b/content/commands/function.md index 5a3eff5022..f44e79f594 100644 --- a/content/commands/function.md +++ b/content/commands/function.md @@ -9,6 +9,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: Depends on subcommand. diff --git a/content/commands/geoadd.md b/content/commands/geoadd.md index 621db9c16e..3ec6b92f2c 100644 --- a/content/commands/geoadd.md +++ b/content/commands/geoadd.md @@ -48,6 +48,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -79,8 +80,7 @@ linkTitle: GEOADD since: 3.2.0 summary: Adds one or more members to a geospatial index. The key is created if it doesn't exist. -syntax_fmt: "GEOADD key [NX | XX] [CH] longitude latitude member [longitude - latitude\ +syntax_fmt: "GEOADD key [NX | XX] [CH] longitude latitude member [longitude\n latitude\ \ member ...]" syntax_str: '[NX | XX] [CH] longitude latitude member [longitude latitude member ...]' title: GEOADD diff --git a/content/commands/geodist.md b/content/commands/geodist.md index da9bc826b2..2ecdc5f43e 100644 --- a/content/commands/geodist.md +++ b/content/commands/geodist.md @@ -42,6 +42,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/geohash.md b/content/commands/geohash.md index bee60568b2..d412fb779e 100644 --- a/content/commands/geohash.md +++ b/content/commands/geohash.md @@ -21,6 +21,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/geopos.md b/content/commands/geopos.md index 4788645c60..e2afb8c936 100644 --- a/content/commands/geopos.md +++ b/content/commands/geopos.md @@ -21,6 +21,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/georadius.md b/content/commands/georadius.md index ff9555bb1b..4f8415c52c 100644 --- a/content/commands/georadius.md +++ b/content/commands/georadius.md @@ -99,6 +99,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -165,10 +166,8 @@ replaced_by: '[`GEOSEARCH`]({{< relref "/commands/geosearch" >}}) and [`GEOSEARC since: 3.2.0 summary: Queries a geospatial index for members within a distance from a coordinate, optionally stores the result. -syntax_fmt: "GEORADIUS key longitude latitude radius - [WITHCOORD]\ - \ [WITHDIST] [WITHHASH] [COUNT\_count [ANY]] [ASC | DESC] - [STORE\_key | STOREDIST\_\ +syntax_fmt: "GEORADIUS key longitude latitude radius \n [WITHCOORD]\ + \ [WITHDIST] [WITHHASH] [COUNT\_count [ANY]] [ASC | DESC]\n [STORE\_key | STOREDIST\_\ key]" syntax_str: "longitude latitude radius [WITHCOORD] [WITHDIST] [WITHHASH]\ \ [COUNT\_count [ANY]] [ASC | DESC] [STORE\_key | STOREDIST\_key]" diff --git a/content/commands/georadius_ro.md b/content/commands/georadius_ro.md index 3257ddc6b8..e4cad61a8e 100644 --- a/content/commands/georadius_ro.md +++ b/content/commands/georadius_ro.md @@ -85,6 +85,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -123,8 +124,7 @@ replaced_by: '[`GEOSEARCH`]({{< relref "/commands/geosearch" >}}) with the `BYRA since: 3.2.10 summary: Returns members from a geospatial index that are within a distance from a coordinate. -syntax_fmt: "GEORADIUS_RO key longitude latitude radius - [WITHCOORD]\ +syntax_fmt: "GEORADIUS_RO key longitude latitude radius \n [WITHCOORD]\ \ [WITHDIST] [WITHHASH] [COUNT\_count [ANY]] [ASC | DESC]" syntax_str: "longitude latitude radius [WITHCOORD] [WITHDIST] [WITHHASH]\ \ [COUNT\_count [ANY]] [ASC | DESC]" diff --git a/content/commands/georadiusbymember.md b/content/commands/georadiusbymember.md index 186b860d1f..bc26121b80 100644 --- a/content/commands/georadiusbymember.md +++ b/content/commands/georadiusbymember.md @@ -95,6 +95,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -161,10 +162,8 @@ replaced_by: '[`GEOSEARCH`]({{< relref "/commands/geosearch" >}}) and [`GEOSEARC since: 3.2.0 summary: Queries a geospatial index for members within a distance from a member, optionally stores the result. -syntax_fmt: "GEORADIUSBYMEMBER key member radius [WITHCOORD] -\ - \ [WITHDIST] [WITHHASH] [COUNT\_count [ANY]] [ASC | DESC] [STORE\_key - | STOREDIST\_\ +syntax_fmt: "GEORADIUSBYMEMBER key member radius [WITHCOORD]\n\ + \ [WITHDIST] [WITHHASH] [COUNT\_count [ANY]] [ASC | DESC] [STORE\_key\n | STOREDIST\_\ key]" syntax_str: "member radius [WITHCOORD] [WITHDIST] [WITHHASH] [COUNT\_\ count [ANY]] [ASC | DESC] [STORE\_key | STOREDIST\_key]" diff --git a/content/commands/georadiusbymember_ro.md b/content/commands/georadiusbymember_ro.md index f4ebaf74e7..e2724a4680 100644 --- a/content/commands/georadiusbymember_ro.md +++ b/content/commands/georadiusbymember_ro.md @@ -81,6 +81,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -119,8 +120,7 @@ replaced_by: '[`GEOSEARCH`]({{< relref "/commands/geosearch" >}}) with the `BYRA since: 3.2.10 summary: Returns members from a geospatial index that are within a distance from a member. -syntax_fmt: "GEORADIUSBYMEMBER_RO key member radius - [WITHCOORD]\ +syntax_fmt: "GEORADIUSBYMEMBER_RO key member radius \n [WITHCOORD]\ \ [WITHDIST] [WITHHASH] [COUNT\_count [ANY]] [ASC | DESC]" syntax_str: "member radius [WITHCOORD] [WITHDIST] [WITHHASH] [COUNT\_\ count [ANY]] [ASC | DESC]" diff --git a/content/commands/geosearch.md b/content/commands/geosearch.md index 236a81c171..c9144addd8 100644 --- a/content/commands/geosearch.md +++ b/content/commands/geosearch.md @@ -131,6 +131,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -160,12 +161,9 @@ key_specs: linkTitle: GEOSEARCH since: 6.2.0 summary: Queries a geospatial index for members inside an area of a box or a circle. -syntax_fmt: "GEOSEARCH key -\ - \ | BYBOX\_width height > [ASC | DESC] [COUNT\_count [ANY]] [WITHCOORD] [WITHDIST] - [WITHHASH]" +syntax_fmt: "GEOSEARCH key \n\ + \ | BYBOX\_width height > [ASC | DESC] [COUNT\_count [ANY]] [WITHCOORD] [WITHDIST]\n [WITHHASH]" syntax_str: " | BYBOX\_width height > [ASC | DESC] [COUNT\_\ count [ANY]] [WITHCOORD] [WITHDIST] [WITHHASH]" diff --git a/content/commands/geosearchstore.md b/content/commands/geosearchstore.md index c00bde9f66..5b89bae8bc 100644 --- a/content/commands/geosearchstore.md +++ b/content/commands/geosearchstore.md @@ -125,6 +125,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -169,12 +170,9 @@ linkTitle: GEOSEARCHSTORE since: 6.2.0 summary: Queries a geospatial index for members inside an area of a box or a circle, optionally stores the result. -syntax_fmt: "GEOSEARCHSTORE destination source - | BYBOX\_width height\ - \ > [ASC | DESC] [COUNT\_count - [ANY]] [STOREDIST]" +syntax_fmt: "GEOSEARCHSTORE destination source \n | BYBOX\_width height\ + \ > [ASC | DESC] [COUNT\_count\n [ANY]] [STOREDIST]" syntax_str: "source | BYBOX\_width height > [ASC | DESC]\ \ [COUNT\_count [ANY]] [STOREDIST]" diff --git a/content/commands/get.md b/content/commands/get.md index 826c604f56..e0a31d7b3a 100644 --- a/content/commands/get.md +++ b/content/commands/get.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/getbit.md b/content/commands/getbit.md index ee9fa725a1..fad569aa47 100644 --- a/content/commands/getbit.md +++ b/content/commands/getbit.md @@ -19,6 +19,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/getdel.md b/content/commands/getdel.md index 117bb98e88..8b9a006e6e 100644 --- a/content/commands/getdel.md +++ b/content/commands/getdel.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/getex.md b/content/commands/getex.md index 9e26669d05..27511717ae 100644 --- a/content/commands/getex.md +++ b/content/commands/getex.md @@ -40,6 +40,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -67,8 +68,7 @@ key_specs: linkTitle: GETEX since: 6.2.0 summary: Returns the string value of a key after setting its expiration time. -syntax_fmt: "GETEX key [EX\_seconds | PX\_milliseconds | EXAT\_unix-time-seconds | -\ +syntax_fmt: "GETEX key [EX\_seconds | PX\_milliseconds | EXAT\_unix-time-seconds |\n\ \ PXAT\_unix-time-milliseconds | PERSIST]" syntax_str: "[EX\_seconds | PX\_milliseconds | EXAT\_unix-time-seconds | PXAT\_unix-time-milliseconds\ \ | PERSIST]" diff --git a/content/commands/getrange.md b/content/commands/getrange.md index d097e717ec..274fc4a05d 100644 --- a/content/commands/getrange.md +++ b/content/commands/getrange.md @@ -22,6 +22,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/getset.md b/content/commands/getset.md index 41314769ed..269f8e0557 100644 --- a/content/commands/getset.md +++ b/content/commands/getset.md @@ -19,6 +19,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/hdel.md b/content/commands/hdel.md index a78be40347..e2e0a9e407 100644 --- a/content/commands/hdel.md +++ b/content/commands/hdel.md @@ -20,6 +20,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/hello.md b/content/commands/hello.md index 52db82fe4b..fbcc1ae417 100644 --- a/content/commands/hello.md +++ b/content/commands/hello.md @@ -34,6 +34,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/hexists.md b/content/commands/hexists.md index b3100e4093..9f52bb5943 100644 --- a/content/commands/hexists.md +++ b/content/commands/hexists.md @@ -19,6 +19,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/hexpire.md b/content/commands/hexpire.md index 7b42935f77..0400e8a0a0 100644 --- a/content/commands/hexpire.md +++ b/content/commands/hexpire.md @@ -50,6 +50,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -76,8 +77,7 @@ key_specs: linkTitle: HEXPIRE since: 7.4.0 summary: Set expiry for hash field using relative time to expire (seconds) -syntax_fmt: "HEXPIRE key seconds [NX | XX | GT | LT] FIELDS\_numfields field - [field\ +syntax_fmt: "HEXPIRE key seconds [NX | XX | GT | LT] FIELDS\_numfields field\n [field\ \ ...]" syntax_str: "seconds [NX | XX | GT | LT] FIELDS\_numfields field [field ...]" title: HEXPIRE diff --git a/content/commands/hexpireat.md b/content/commands/hexpireat.md index 1b7f059268..c76bab82bd 100644 --- a/content/commands/hexpireat.md +++ b/content/commands/hexpireat.md @@ -50,6 +50,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -76,8 +77,7 @@ key_specs: linkTitle: HEXPIREAT since: 7.4.0 summary: Set expiry for hash field using an absolute Unix timestamp (seconds) -syntax_fmt: "HEXPIREAT key unix-time-seconds [NX | XX | GT | LT] FIELDS\_numfields -\ +syntax_fmt: "HEXPIREAT key unix-time-seconds [NX | XX | GT | LT] FIELDS\_numfields\n\ \ field [field ...]" syntax_str: "unix-time-seconds [NX | XX | GT | LT] FIELDS\_numfields field [field\ \ ...]" diff --git a/content/commands/hexpiretime.md b/content/commands/hexpiretime.md index d973f2390b..86b2ea2caf 100644 --- a/content/commands/hexpiretime.md +++ b/content/commands/hexpiretime.md @@ -27,6 +27,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/hget.md b/content/commands/hget.md index a22b24846f..a9d60ef80f 100644 --- a/content/commands/hget.md +++ b/content/commands/hget.md @@ -19,6 +19,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/hgetall.md b/content/commands/hgetall.md index fca75beab9..44e15c5068 100644 --- a/content/commands/hgetall.md +++ b/content/commands/hgetall.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/hgetdel.md b/content/commands/hgetdel.md index 27c4ec15ca..db25b9462f 100644 --- a/content/commands/hgetdel.md +++ b/content/commands/hgetdel.md @@ -27,6 +27,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/hgetex.md b/content/commands/hgetex.md index 0bd8fe34fd..9bbcb3d807 100644 --- a/content/commands/hgetex.md +++ b/content/commands/hgetex.md @@ -51,6 +51,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -81,9 +82,7 @@ since: 8.0.0 summary: Get the value of one or more fields of a given hash key, and optionally set their expiration. syntax_fmt: "HGETEX key [EX\_seconds | PX\_milliseconds | EXAT\_unix-time-seconds\ - \ | - PXAT\_unix-time-milliseconds | PERSIST] FIELDS\_numfields field - [field\ + \ |\n PXAT\_unix-time-milliseconds | PERSIST] FIELDS\_numfields field\n [field\ \ ...]" syntax_str: "[EX\_seconds | PX\_milliseconds | EXAT\_unix-time-seconds | PXAT\_unix-time-milliseconds\ \ | PERSIST] FIELDS\_numfields field [field ...]" diff --git a/content/commands/hincrby.md b/content/commands/hincrby.md index 7bbf44be84..ac59549b7e 100644 --- a/content/commands/hincrby.md +++ b/content/commands/hincrby.md @@ -22,6 +22,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/hincrbyfloat.md b/content/commands/hincrbyfloat.md index 81b6431b7d..e9bf2b4500 100644 --- a/content/commands/hincrbyfloat.md +++ b/content/commands/hincrbyfloat.md @@ -22,6 +22,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/hkeys.md b/content/commands/hkeys.md index 27fe9527dd..7dfa154b9b 100644 --- a/content/commands/hkeys.md +++ b/content/commands/hkeys.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/hlen.md b/content/commands/hlen.md index e92bf020d6..0ca5f918ab 100644 --- a/content/commands/hlen.md +++ b/content/commands/hlen.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/hmget.md b/content/commands/hmget.md index ca3a549840..982dfeaf74 100644 --- a/content/commands/hmget.md +++ b/content/commands/hmget.md @@ -20,6 +20,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/hmset.md b/content/commands/hmset.md index d64b4ef488..bed676ed79 100644 --- a/content/commands/hmset.md +++ b/content/commands/hmset.md @@ -26,6 +26,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/hpersist.md b/content/commands/hpersist.md index 7ddf670643..4cc8485861 100644 --- a/content/commands/hpersist.md +++ b/content/commands/hpersist.md @@ -27,6 +27,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/hpexpire.md b/content/commands/hpexpire.md index b74a3c461d..4001a872bc 100644 --- a/content/commands/hpexpire.md +++ b/content/commands/hpexpire.md @@ -50,6 +50,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -76,8 +77,7 @@ key_specs: linkTitle: HPEXPIRE since: 7.4.0 summary: Set expiry for hash field using relative time to expire (milliseconds) -syntax_fmt: "HPEXPIRE key milliseconds [NX | XX | GT | LT] FIELDS\_numfields field -\ +syntax_fmt: "HPEXPIRE key milliseconds [NX | XX | GT | LT] FIELDS\_numfields field\n\ \ [field ...]" syntax_str: "milliseconds [NX | XX | GT | LT] FIELDS\_numfields field [field ...]" title: HPEXPIRE diff --git a/content/commands/hpexpireat.md b/content/commands/hpexpireat.md index 634b9a10d6..1f68a352c8 100644 --- a/content/commands/hpexpireat.md +++ b/content/commands/hpexpireat.md @@ -50,6 +50,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -76,8 +77,7 @@ key_specs: linkTitle: HPEXPIREAT since: 7.4.0 summary: Set expiry for hash field using an absolute Unix timestamp (milliseconds) -syntax_fmt: "HPEXPIREAT key unix-time-milliseconds [NX | XX | GT | LT] - FIELDS\_\ +syntax_fmt: "HPEXPIREAT key unix-time-milliseconds [NX | XX | GT | LT]\n FIELDS\_\ numfields field [field ...]" syntax_str: "unix-time-milliseconds [NX | XX | GT | LT] FIELDS\_numfields field [field\ \ ...]" diff --git a/content/commands/hpexpiretime.md b/content/commands/hpexpiretime.md index 858bdf7a03..dbae3e3943 100644 --- a/content/commands/hpexpiretime.md +++ b/content/commands/hpexpiretime.md @@ -27,6 +27,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/hpttl.md b/content/commands/hpttl.md index a615cfda8e..ac3ac228d5 100644 --- a/content/commands/hpttl.md +++ b/content/commands/hpttl.md @@ -27,6 +27,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/hrandfield.md b/content/commands/hrandfield.md index cf033e4c92..fde37d2c76 100644 --- a/content/commands/hrandfield.md +++ b/content/commands/hrandfield.md @@ -28,6 +28,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/hscan.md b/content/commands/hscan.md index a6171867fd..e0fb6fd9a8 100644 --- a/content/commands/hscan.md +++ b/content/commands/hscan.md @@ -34,6 +34,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/hset.md b/content/commands/hset.md index e3418e2a7e..1a0d6a3c61 100644 --- a/content/commands/hset.md +++ b/content/commands/hset.md @@ -26,6 +26,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/hsetex.md b/content/commands/hsetex.md index e9ec6767e9..d0e54459c4 100644 --- a/content/commands/hsetex.md +++ b/content/commands/hsetex.md @@ -69,6 +69,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -97,10 +98,8 @@ linkTitle: HSETEX since: 8.0.0 summary: Set the value of one or more fields of a given hash key, and optionally set their expiration. -syntax_fmt: "HSETEX key [FNX | FXX] [EX\_seconds | PX\_milliseconds | - EXAT\_unix-time-seconds\ - \ | PXAT\_unix-time-milliseconds | KEEPTTL] - FIELDS\_numfields field value [field\ +syntax_fmt: "HSETEX key [FNX | FXX] [EX\_seconds | PX\_milliseconds |\n EXAT\_unix-time-seconds\ + \ | PXAT\_unix-time-milliseconds | KEEPTTL]\n FIELDS\_numfields field value [field\ \ value ...]" syntax_str: "[FNX | FXX] [EX\_seconds | PX\_milliseconds | EXAT\_unix-time-seconds\ \ | PXAT\_unix-time-milliseconds | KEEPTTL] FIELDS\_numfields field value [field\ diff --git a/content/commands/hsetnx.md b/content/commands/hsetnx.md index 5870b98417..5f35168557 100644 --- a/content/commands/hsetnx.md +++ b/content/commands/hsetnx.md @@ -22,6 +22,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/hstrlen.md b/content/commands/hstrlen.md index 87e63dc156..96d6f5f7b9 100644 --- a/content/commands/hstrlen.md +++ b/content/commands/hstrlen.md @@ -19,6 +19,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/httl.md b/content/commands/httl.md index 9f7f74b1aa..2124103336 100644 --- a/content/commands/httl.md +++ b/content/commands/httl.md @@ -27,6 +27,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/hvals.md b/content/commands/hvals.md index 41b9fecf14..4f81260b87 100644 --- a/content/commands/hvals.md +++ b/content/commands/hvals.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/incr.md b/content/commands/incr.md index c2f5123892..4f83355ce8 100644 --- a/content/commands/incr.md +++ b/content/commands/incr.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/incrby.md b/content/commands/incrby.md index 3d3addc38d..b7fba98084 100644 --- a/content/commands/incrby.md +++ b/content/commands/incrby.md @@ -19,6 +19,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/incrbyfloat.md b/content/commands/incrbyfloat.md index 71985bef95..1b1bf7cfd9 100644 --- a/content/commands/incrbyfloat.md +++ b/content/commands/incrbyfloat.md @@ -19,6 +19,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/info.md b/content/commands/info.md index 61643d8f54..b05e27e485 100644 --- a/content/commands/info.md +++ b/content/commands/info.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/json.arrappend.md b/content/commands/json.arrappend.md index 0447c4dae9..d2def7f601 100644 --- a/content/commands/json.arrappend.md +++ b/content/commands/json.arrappend.md @@ -19,6 +19,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) when path is evaluated to a single value, O(N) when path is evaluated @@ -34,7 +35,7 @@ stack_path: docs/data-types/json summary: Append one or more JSON values into the array at path after the last element in it. syntax_fmt: JSON.ARRAPPEND key path value [value ...] -syntax_str: path value [value ...] +syntax_str: 'path value [value ...]' title: JSON.ARRAPPEND --- Append the JSON values into the array at `path` after the last element in it. diff --git a/content/commands/json.arrindex.md b/content/commands/json.arrindex.md index fb75649628..1d7652ac2e 100644 --- a/content/commands/json.arrindex.md +++ b/content/commands/json.arrindex.md @@ -26,6 +26,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(N) when path is evaluated to a single value where N is the size of the diff --git a/content/commands/json.arrinsert.md b/content/commands/json.arrinsert.md index a6ecd96339..51da3bf27b 100644 --- a/content/commands/json.arrinsert.md +++ b/content/commands/json.arrinsert.md @@ -20,6 +20,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(N) when path is evaluated to a single value where N is the size of the diff --git a/content/commands/json.arrlen.md b/content/commands/json.arrlen.md index 4c1226247d..1ace273dbc 100644 --- a/content/commands/json.arrlen.md +++ b/content/commands/json.arrlen.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) where path is evaluated to a single value, O(N) where path is evaluated diff --git a/content/commands/json.arrpop.md b/content/commands/json.arrpop.md index db4890a295..f4d1102017 100644 --- a/content/commands/json.arrpop.md +++ b/content/commands/json.arrpop.md @@ -22,6 +22,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(N) when path is evaluated to a single value where N is the size of the diff --git a/content/commands/json.arrtrim.md b/content/commands/json.arrtrim.md index 7057cac295..fe2187f51f 100644 --- a/content/commands/json.arrtrim.md +++ b/content/commands/json.arrtrim.md @@ -19,6 +19,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(N) when path is evaluated to a single value where N is the size of the diff --git a/content/commands/json.clear.md b/content/commands/json.clear.md index 1f65b8e9ec..35ff1a9353 100644 --- a/content/commands/json.clear.md +++ b/content/commands/json.clear.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(N) when path is evaluated to a single value where N is the size of the diff --git a/content/commands/json.debug-help.md b/content/commands/json.debug-help.md index b10684c33d..a32b5a8733 100644 --- a/content/commands/json.debug-help.md +++ b/content/commands/json.debug-help.md @@ -6,6 +6,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: N/A diff --git a/content/commands/json.debug-memory.md b/content/commands/json.debug-memory.md index b2b504ba1c..fb4a17fb3b 100644 --- a/content/commands/json.debug-memory.md +++ b/content/commands/json.debug-memory.md @@ -15,6 +15,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(N) when path is evaluated to a single value, where N is the size of diff --git a/content/commands/json.debug.md b/content/commands/json.debug.md index b8e2cdf20d..637e5b4c71 100644 --- a/content/commands/json.debug.md +++ b/content/commands/json.debug.md @@ -6,6 +6,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: N/A diff --git a/content/commands/json.del.md b/content/commands/json.del.md index 6115f497e9..2498ee7e3d 100644 --- a/content/commands/json.del.md +++ b/content/commands/json.del.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(N) when path is evaluated to a single value where N is the size of the diff --git a/content/commands/json.forget.md b/content/commands/json.forget.md index ad031044cf..59f4b5ce68 100644 --- a/content/commands/json.forget.md +++ b/content/commands/json.forget.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(N) when path is evaluated to a single value where N is the size of the diff --git a/content/commands/json.get.md b/content/commands/json.get.md index f05d227aa3..6c605d4660 100644 --- a/content/commands/json.get.md +++ b/content/commands/json.get.md @@ -29,6 +29,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(N) when path is evaluated to a single value where N is the size of the @@ -42,8 +43,7 @@ module: JSON since: 1.0.0 stack_path: docs/data-types/json summary: Gets the value at one or more paths in JSON serialized form -syntax_fmt: "JSON.GET key [INDENT\_indent] [NEWLINE\_newline] [SPACE\_space] [path -\ +syntax_fmt: "JSON.GET key [INDENT\_indent] [NEWLINE\_newline] [SPACE\_space] [path\n\ \ [path ...]]" syntax_str: "[INDENT\_indent] [NEWLINE\_newline] [SPACE\_space] [path [path ...]]" title: JSON.GET diff --git a/content/commands/json.merge.md b/content/commands/json.merge.md index f052bc074f..89bca76ad8 100644 --- a/content/commands/json.merge.md +++ b/content/commands/json.merge.md @@ -17,6 +17,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(M+N) when path is evaluated to a single value where M is the size of diff --git a/content/commands/json.mget.md b/content/commands/json.mget.md index baef17a1df..2684a5b518 100644 --- a/content/commands/json.mget.md +++ b/content/commands/json.mget.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(M*N) when path is evaluated to a single value where M is the number diff --git a/content/commands/json.mset.md b/content/commands/json.mset.md index 225e4b32a4..0907cdccc5 100644 --- a/content/commands/json.mset.md +++ b/content/commands/json.mset.md @@ -21,6 +21,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(K*(M+N)) where k is the number of keys in the command, when path is diff --git a/content/commands/json.numincrby.md b/content/commands/json.numincrby.md index 3452a1317b..b2acf5d970 100644 --- a/content/commands/json.numincrby.md +++ b/content/commands/json.numincrby.md @@ -17,6 +17,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) when path is evaluated to a single value, O(N) when path is evaluated diff --git a/content/commands/json.nummultby.md b/content/commands/json.nummultby.md index a066861e51..a3350a8ea6 100644 --- a/content/commands/json.nummultby.md +++ b/content/commands/json.nummultby.md @@ -17,6 +17,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) when path is evaluated to a single value, O(N) when path is evaluated diff --git a/content/commands/json.objkeys.md b/content/commands/json.objkeys.md index 4a214d98fe..06eabe7401 100644 --- a/content/commands/json.objkeys.md +++ b/content/commands/json.objkeys.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(N) when path is evaluated to a single value, where N is the number of diff --git a/content/commands/json.objlen.md b/content/commands/json.objlen.md index 991060c21e..c7de69f21c 100644 --- a/content/commands/json.objlen.md +++ b/content/commands/json.objlen.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) when path is evaluated to a single value, O(N) when path is evaluated diff --git a/content/commands/json.resp.md b/content/commands/json.resp.md index 6ea5e3b788..883ecf21b5 100644 --- a/content/commands/json.resp.md +++ b/content/commands/json.resp.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(N) when path is evaluated to a single value, where N is the size of diff --git a/content/commands/json.set.md b/content/commands/json.set.md index 21487c1621..303c030d4d 100644 --- a/content/commands/json.set.md +++ b/content/commands/json.set.md @@ -27,6 +27,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(M+N) when path is evaluated to a single value where M is the size of diff --git a/content/commands/json.strappend.md b/content/commands/json.strappend.md index f91af9bf0f..68c4ead7a6 100644 --- a/content/commands/json.strappend.md +++ b/content/commands/json.strappend.md @@ -18,6 +18,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) when path is evaluated to a single value, O(N) when path is evaluated diff --git a/content/commands/json.strlen.md b/content/commands/json.strlen.md index 746e4e4799..4f9df386c7 100644 --- a/content/commands/json.strlen.md +++ b/content/commands/json.strlen.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) when path is evaluated to a single value, O(N) when path is evaluated diff --git a/content/commands/json.toggle.md b/content/commands/json.toggle.md index 2b89d8b403..e5cb0fa535 100644 --- a/content/commands/json.toggle.md +++ b/content/commands/json.toggle.md @@ -15,6 +15,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) when path is evaluated to a single value, O(N) when path is evaluated diff --git a/content/commands/json.type.md b/content/commands/json.type.md index f7f004bba7..5dd7c3e265 100644 --- a/content/commands/json.type.md +++ b/content/commands/json.type.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) when path is evaluated to a single value, O(N) when path is evaluated diff --git a/content/commands/keys.md b/content/commands/keys.md index fae19bef62..62f54175ca 100644 --- a/content/commands/keys.md +++ b/content/commands/keys.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/lastsave.md b/content/commands/lastsave.md index 9dc9127419..3d0324b539 100644 --- a/content/commands/lastsave.md +++ b/content/commands/lastsave.md @@ -11,6 +11,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/latency-doctor.md b/content/commands/latency-doctor.md index ed6f2a1689..d38899da3a 100644 --- a/content/commands/latency-doctor.md +++ b/content/commands/latency-doctor.md @@ -11,6 +11,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/latency-graph.md b/content/commands/latency-graph.md index 38fb84dcc7..842b1d1c04 100644 --- a/content/commands/latency-graph.md +++ b/content/commands/latency-graph.md @@ -15,6 +15,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/latency-help.md b/content/commands/latency-help.md index 1156af5d6f..c312a8202d 100644 --- a/content/commands/latency-help.md +++ b/content/commands/latency-help.md @@ -9,6 +9,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/latency-histogram.md b/content/commands/latency-histogram.md index 6d6d1a5194..4bd6923e99 100644 --- a/content/commands/latency-histogram.md +++ b/content/commands/latency-histogram.md @@ -17,6 +17,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/latency-history.md b/content/commands/latency-history.md index 6d4906e545..d357d4129f 100644 --- a/content/commands/latency-history.md +++ b/content/commands/latency-history.md @@ -15,6 +15,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/latency-latest.md b/content/commands/latency-latest.md index 9fd0723885..1531128913 100644 --- a/content/commands/latency-latest.md +++ b/content/commands/latency-latest.md @@ -11,6 +11,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/latency-reset.md b/content/commands/latency-reset.md index 992624ef7b..482b2d5621 100644 --- a/content/commands/latency-reset.md +++ b/content/commands/latency-reset.md @@ -17,6 +17,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/latency.md b/content/commands/latency.md index d1045a02cc..314cac54ef 100644 --- a/content/commands/latency.md +++ b/content/commands/latency.md @@ -9,6 +9,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: Depends on subcommand. diff --git a/content/commands/lcs.md b/content/commands/lcs.md index 318e6e732f..31f74e62f9 100644 --- a/content/commands/lcs.md +++ b/content/commands/lcs.md @@ -40,6 +40,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/lindex.md b/content/commands/lindex.md index b4526f664a..9c56da7c2a 100644 --- a/content/commands/lindex.md +++ b/content/commands/lindex.md @@ -19,6 +19,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/linsert.md b/content/commands/linsert.md index daf5790fe5..22057ef59c 100644 --- a/content/commands/linsert.md +++ b/content/commands/linsert.md @@ -33,6 +33,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/llen.md b/content/commands/llen.md index 9ed73a40a8..7f635be1f9 100644 --- a/content/commands/llen.md +++ b/content/commands/llen.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/lmove.md b/content/commands/lmove.md index 338e51a71e..fbe8222265 100644 --- a/content/commands/lmove.md +++ b/content/commands/lmove.md @@ -42,6 +42,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/lmpop.md b/content/commands/lmpop.md index 1f911b911d..81aab14d8e 100644 --- a/content/commands/lmpop.md +++ b/content/commands/lmpop.md @@ -36,6 +36,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/lolwut.md b/content/commands/lolwut.md index 813b1c66a4..1c8ec6c1e3 100644 --- a/content/commands/lolwut.md +++ b/content/commands/lolwut.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/lpop.md b/content/commands/lpop.md index 7558170678..52b05f596a 100644 --- a/content/commands/lpop.md +++ b/content/commands/lpop.md @@ -21,6 +21,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/lpos.md b/content/commands/lpos.md index 63fa36040a..a92362e0b8 100644 --- a/content/commands/lpos.md +++ b/content/commands/lpos.md @@ -34,6 +34,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/lpush.md b/content/commands/lpush.md index ef493512ed..7da4f44a42 100644 --- a/content/commands/lpush.md +++ b/content/commands/lpush.md @@ -20,6 +20,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/lpushx.md b/content/commands/lpushx.md index c234808fe4..4e5f4f8181 100644 --- a/content/commands/lpushx.md +++ b/content/commands/lpushx.md @@ -20,6 +20,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/lrange.md b/content/commands/lrange.md index 01cb998d45..3d373da417 100644 --- a/content/commands/lrange.md +++ b/content/commands/lrange.md @@ -22,6 +22,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/lrem.md b/content/commands/lrem.md index a15a58425a..a8460557bc 100644 --- a/content/commands/lrem.md +++ b/content/commands/lrem.md @@ -22,6 +22,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/lset.md b/content/commands/lset.md index cd0fe268c2..549e4e4564 100644 --- a/content/commands/lset.md +++ b/content/commands/lset.md @@ -22,6 +22,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/ltrim.md b/content/commands/ltrim.md index 3cad56cb37..a595e131c6 100644 --- a/content/commands/ltrim.md +++ b/content/commands/ltrim.md @@ -22,6 +22,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/memory-doctor.md b/content/commands/memory-doctor.md index 1b986136d0..7aeb9e0a95 100644 --- a/content/commands/memory-doctor.md +++ b/content/commands/memory-doctor.md @@ -9,6 +9,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/memory-help.md b/content/commands/memory-help.md index 5f7d92fa3e..89aaea7de5 100644 --- a/content/commands/memory-help.md +++ b/content/commands/memory-help.md @@ -9,6 +9,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/memory-malloc-stats.md b/content/commands/memory-malloc-stats.md index f698c08a3c..a82f0fc79a 100644 --- a/content/commands/memory-malloc-stats.md +++ b/content/commands/memory-malloc-stats.md @@ -9,6 +9,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: Depends on how much memory is allocated, could be slow diff --git a/content/commands/memory-purge.md b/content/commands/memory-purge.md index b41a5fe3e3..b2bfd5e47d 100644 --- a/content/commands/memory-purge.md +++ b/content/commands/memory-purge.md @@ -9,6 +9,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: Depends on how much memory is allocated, could be slow diff --git a/content/commands/memory-stats.md b/content/commands/memory-stats.md index e12cee080f..ca537ad904 100644 --- a/content/commands/memory-stats.md +++ b/content/commands/memory-stats.md @@ -9,6 +9,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/memory-usage.md b/content/commands/memory-usage.md index b75b22530b..50b6f55900 100644 --- a/content/commands/memory-usage.md +++ b/content/commands/memory-usage.md @@ -20,6 +20,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/memory.md b/content/commands/memory.md index 9b4d36983b..9a1d52e536 100644 --- a/content/commands/memory.md +++ b/content/commands/memory.md @@ -9,6 +9,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: Depends on subcommand. diff --git a/content/commands/mget.md b/content/commands/mget.md index 100c1f7e18..0a30f2bec0 100644 --- a/content/commands/mget.md +++ b/content/commands/mget.md @@ -17,6 +17,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/migrate.md b/content/commands/migrate.md index 9cfe12c8af..c690a38baa 100644 --- a/content/commands/migrate.md +++ b/content/commands/migrate.md @@ -76,6 +76,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -130,8 +131,7 @@ key_specs: linkTitle: MIGRATE since: 2.6.0 summary: Atomically transfers a key from one Redis instance to another. -syntax_fmt: "MIGRATE host port destination-db timeout [COPY] [REPLACE] -\ +syntax_fmt: "MIGRATE host port destination-db timeout [COPY] [REPLACE]\n\ \ [AUTH\_password | AUTH2\_username password] [KEYS\_key [key ...]]" syntax_str: "port destination-db timeout [COPY] [REPLACE] [AUTH\_password\ \ | AUTH2\_username password] [KEYS\_key [key ...]]" diff --git a/content/commands/module-help.md b/content/commands/module-help.md index d55fc7edd4..bb3cc66ad4 100644 --- a/content/commands/module-help.md +++ b/content/commands/module-help.md @@ -9,6 +9,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/module-list.md b/content/commands/module-list.md index 2953ff223a..68319f7611 100644 --- a/content/commands/module-list.md +++ b/content/commands/module-list.md @@ -11,6 +11,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/module-load.md b/content/commands/module-load.md index f38005259e..426c9b9f3e 100644 --- a/content/commands/module-load.md +++ b/content/commands/module-load.md @@ -20,6 +20,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/module-loadex.md b/content/commands/module-loadex.md index 68e35662d1..3115d544a0 100644 --- a/content/commands/module-loadex.md +++ b/content/commands/module-loadex.md @@ -34,6 +34,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -47,8 +48,7 @@ hidden: false linkTitle: MODULE LOADEX since: 7.0.0 summary: Loads a module using extended parameters. -syntax_fmt: "MODULE LOADEX path [CONFIG\_name value [CONFIG name value ...]] - [ARGS\_\ +syntax_fmt: "MODULE LOADEX path [CONFIG\_name value [CONFIG name value ...]]\n [ARGS\_\ args [args ...]]" syntax_str: "[CONFIG\_name value [CONFIG name value ...]] [ARGS\_args [args ...]]" title: MODULE LOADEX diff --git a/content/commands/module-unload.md b/content/commands/module-unload.md index 02c39c1dd0..3d5eba8cd0 100644 --- a/content/commands/module-unload.md +++ b/content/commands/module-unload.md @@ -15,6 +15,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/module.md b/content/commands/module.md index dd12c89938..c34e594554 100644 --- a/content/commands/module.md +++ b/content/commands/module.md @@ -9,6 +9,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: Depends on subcommand. diff --git a/content/commands/monitor.md b/content/commands/monitor.md index dfb47d1cdc..804d123a02 100644 --- a/content/commands/monitor.md +++ b/content/commands/monitor.md @@ -11,6 +11,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/move.md b/content/commands/move.md index 64106a9016..ad2f51a15e 100644 --- a/content/commands/move.md +++ b/content/commands/move.md @@ -19,6 +19,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/mset.md b/content/commands/mset.md index e1faa3cc48..166ad72ac3 100644 --- a/content/commands/mset.md +++ b/content/commands/mset.md @@ -23,6 +23,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/msetnx.md b/content/commands/msetnx.md index 58bdf18e2a..3219ee5f92 100644 --- a/content/commands/msetnx.md +++ b/content/commands/msetnx.md @@ -23,6 +23,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/multi.md b/content/commands/multi.md index 6e9da3e2d9..98210be1f0 100644 --- a/content/commands/multi.md +++ b/content/commands/multi.md @@ -10,6 +10,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/object-encoding.md b/content/commands/object-encoding.md index 9673d9ba30..f6b78dafdd 100644 --- a/content/commands/object-encoding.md +++ b/content/commands/object-encoding.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/object-freq.md b/content/commands/object-freq.md index b426f3ba56..f887bb656c 100644 --- a/content/commands/object-freq.md +++ b/content/commands/object-freq.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/object-help.md b/content/commands/object-help.md index 0ccdd4bcf7..ac4125ae0e 100644 --- a/content/commands/object-help.md +++ b/content/commands/object-help.md @@ -10,6 +10,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/object-idletime.md b/content/commands/object-idletime.md index 107a195c36..8de3a53ec8 100644 --- a/content/commands/object-idletime.md +++ b/content/commands/object-idletime.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/object-refcount.md b/content/commands/object-refcount.md index a95ea32965..17afcc5fec 100644 --- a/content/commands/object-refcount.md +++ b/content/commands/object-refcount.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/object.md b/content/commands/object.md index e0c1481719..389fd4675d 100644 --- a/content/commands/object.md +++ b/content/commands/object.md @@ -9,6 +9,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: Depends on subcommand. diff --git a/content/commands/persist.md b/content/commands/persist.md index 2acfebaa37..f558ab51ab 100644 --- a/content/commands/persist.md +++ b/content/commands/persist.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/pexpire.md b/content/commands/pexpire.md index 0b735447d2..3d39700c84 100644 --- a/content/commands/pexpire.md +++ b/content/commands/pexpire.md @@ -40,6 +40,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/pexpireat.md b/content/commands/pexpireat.md index 02b1981c58..b190dc09cd 100644 --- a/content/commands/pexpireat.md +++ b/content/commands/pexpireat.md @@ -40,6 +40,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/pexpiretime.md b/content/commands/pexpiretime.md index db8514be1d..5f9d21d2eb 100644 --- a/content/commands/pexpiretime.md +++ b/content/commands/pexpiretime.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/pfadd.md b/content/commands/pfadd.md index ed88667a84..c087f41213 100644 --- a/content/commands/pfadd.md +++ b/content/commands/pfadd.md @@ -21,6 +21,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/pfcount.md b/content/commands/pfcount.md index 7a2a45748f..7fe6e99484 100644 --- a/content/commands/pfcount.md +++ b/content/commands/pfcount.md @@ -17,6 +17,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/pfdebug.md b/content/commands/pfdebug.md index dbec21db90..82ab7af2b4 100644 --- a/content/commands/pfdebug.md +++ b/content/commands/pfdebug.md @@ -21,6 +21,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/pfmerge.md b/content/commands/pfmerge.md index 162be5354f..f1989a7f2f 100644 --- a/content/commands/pfmerge.md +++ b/content/commands/pfmerge.md @@ -22,6 +22,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/pfselftest.md b/content/commands/pfselftest.md index 844b2d8ddb..5a0c06c4ab 100644 --- a/content/commands/pfselftest.md +++ b/content/commands/pfselftest.md @@ -12,6 +12,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/ping.md b/content/commands/ping.md index 2c2a18c7e3..fc2d2e9d62 100644 --- a/content/commands/ping.md +++ b/content/commands/ping.md @@ -15,6 +15,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/psetex.md b/content/commands/psetex.md index 5e82e84dca..40356990e8 100644 --- a/content/commands/psetex.md +++ b/content/commands/psetex.md @@ -22,6 +22,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/psubscribe.md b/content/commands/psubscribe.md index 5b408f8fb0..3a9c4fc34c 100644 --- a/content/commands/psubscribe.md +++ b/content/commands/psubscribe.md @@ -15,6 +15,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/psync.md b/content/commands/psync.md index 196467b464..02400b1195 100644 --- a/content/commands/psync.md +++ b/content/commands/psync.md @@ -18,6 +18,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/pttl.md b/content/commands/pttl.md index e01be9a199..fa91f36429 100644 --- a/content/commands/pttl.md +++ b/content/commands/pttl.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/publish.md b/content/commands/publish.md index 420212bd9c..27c7ea126f 100644 --- a/content/commands/publish.md +++ b/content/commands/publish.md @@ -17,6 +17,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/pubsub-channels.md b/content/commands/pubsub-channels.md index 79bfefad7f..c2261b5e7c 100644 --- a/content/commands/pubsub-channels.md +++ b/content/commands/pubsub-channels.md @@ -15,6 +15,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/pubsub-help.md b/content/commands/pubsub-help.md index f246ba65f5..e376cc49c6 100644 --- a/content/commands/pubsub-help.md +++ b/content/commands/pubsub-help.md @@ -9,6 +9,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/pubsub-numpat.md b/content/commands/pubsub-numpat.md index 89efbb16fd..d4c77e4ae6 100644 --- a/content/commands/pubsub-numpat.md +++ b/content/commands/pubsub-numpat.md @@ -10,6 +10,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/pubsub-numsub.md b/content/commands/pubsub-numsub.md index 8212343dad..d2be6b9f2f 100644 --- a/content/commands/pubsub-numsub.md +++ b/content/commands/pubsub-numsub.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/pubsub-shardchannels.md b/content/commands/pubsub-shardchannels.md index df8f1bd2b3..d807f95d98 100644 --- a/content/commands/pubsub-shardchannels.md +++ b/content/commands/pubsub-shardchannels.md @@ -15,6 +15,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/pubsub-shardnumsub.md b/content/commands/pubsub-shardnumsub.md index 9c1ad0250e..851e096635 100644 --- a/content/commands/pubsub-shardnumsub.md +++ b/content/commands/pubsub-shardnumsub.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/pubsub.md b/content/commands/pubsub.md index 7a769bc52b..67932cfa00 100644 --- a/content/commands/pubsub.md +++ b/content/commands/pubsub.md @@ -9,6 +9,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: Depends on subcommand. diff --git a/content/commands/punsubscribe.md b/content/commands/punsubscribe.md index 3a8f775242..0433403eb1 100644 --- a/content/commands/punsubscribe.md +++ b/content/commands/punsubscribe.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/quit.md b/content/commands/quit.md index 55b024ccc5..58633c3a34 100644 --- a/content/commands/quit.md +++ b/content/commands/quit.md @@ -10,6 +10,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/randomkey.md b/content/commands/randomkey.md index b692da44fd..f813671c84 100644 --- a/content/commands/randomkey.md +++ b/content/commands/randomkey.md @@ -11,6 +11,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/readonly.md b/content/commands/readonly.md index 6f2562f650..15cad03dd6 100644 --- a/content/commands/readonly.md +++ b/content/commands/readonly.md @@ -10,6 +10,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/readwrite.md b/content/commands/readwrite.md index 0a3a704b5a..bf7c88b1bb 100644 --- a/content/commands/readwrite.md +++ b/content/commands/readwrite.md @@ -10,6 +10,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/rename.md b/content/commands/rename.md index 479b6e4398..3aa36a244c 100644 --- a/content/commands/rename.md +++ b/content/commands/rename.md @@ -20,6 +20,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/renamenx.md b/content/commands/renamenx.md index c32974c8a9..7fe71077d8 100644 --- a/content/commands/renamenx.md +++ b/content/commands/renamenx.md @@ -20,6 +20,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/replconf.md b/content/commands/replconf.md index 76bc419857..71060ab45f 100644 --- a/content/commands/replconf.md +++ b/content/commands/replconf.md @@ -11,6 +11,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/replicaof.md b/content/commands/replicaof.md index a09650e092..951c2aa248 100644 --- a/content/commands/replicaof.md +++ b/content/commands/replicaof.md @@ -35,6 +35,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/reset.md b/content/commands/reset.md index 67dc97a5a0..81e6041adf 100644 --- a/content/commands/reset.md +++ b/content/commands/reset.md @@ -10,6 +10,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/restore-asking.md b/content/commands/restore-asking.md index eabed67fd6..2a5bb90f31 100644 --- a/content/commands/restore-asking.md +++ b/content/commands/restore-asking.md @@ -47,6 +47,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -86,8 +87,7 @@ key_specs: linkTitle: RESTORE-ASKING since: 3.0.0 summary: An internal command for migrating keys in a cluster. -syntax_fmt: "RESTORE-ASKING key ttl serialized-value [REPLACE] [ABSTTL] - [IDLETIME\_\ +syntax_fmt: "RESTORE-ASKING key ttl serialized-value [REPLACE] [ABSTTL]\n [IDLETIME\_\ seconds] [FREQ\_frequency]" syntax_str: "ttl serialized-value [REPLACE] [ABSTTL] [IDLETIME\_seconds] [FREQ\_frequency]" title: RESTORE-ASKING diff --git a/content/commands/restore.md b/content/commands/restore.md index 63e3ff8d2c..ea9a134abb 100644 --- a/content/commands/restore.md +++ b/content/commands/restore.md @@ -47,6 +47,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -83,8 +84,7 @@ key_specs: linkTitle: RESTORE since: 2.6.0 summary: Creates a key from the serialized representation of a value. -syntax_fmt: "RESTORE key ttl serialized-value [REPLACE] [ABSTTL] - [IDLETIME\_seconds]\ +syntax_fmt: "RESTORE key ttl serialized-value [REPLACE] [ABSTTL]\n [IDLETIME\_seconds]\ \ [FREQ\_frequency]" syntax_str: "ttl serialized-value [REPLACE] [ABSTTL] [IDLETIME\_seconds] [FREQ\_frequency]" title: RESTORE diff --git a/content/commands/role.md b/content/commands/role.md index 2e369705f9..50599d203a 100644 --- a/content/commands/role.md +++ b/content/commands/role.md @@ -11,6 +11,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/rpop.md b/content/commands/rpop.md index 59d1965044..58a9171899 100644 --- a/content/commands/rpop.md +++ b/content/commands/rpop.md @@ -21,6 +21,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/rpoplpush.md b/content/commands/rpoplpush.md index b4cdb51e09..40ce3a8678 100644 --- a/content/commands/rpoplpush.md +++ b/content/commands/rpoplpush.md @@ -20,6 +20,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/rpush.md b/content/commands/rpush.md index 0fd4ea6271..98edcc93c9 100644 --- a/content/commands/rpush.md +++ b/content/commands/rpush.md @@ -20,6 +20,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/rpushx.md b/content/commands/rpushx.md index 289fea5b10..a653a6abda 100644 --- a/content/commands/rpushx.md +++ b/content/commands/rpushx.md @@ -20,6 +20,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/sadd.md b/content/commands/sadd.md index ba00b7b9bf..f0100d83f4 100644 --- a/content/commands/sadd.md +++ b/content/commands/sadd.md @@ -20,6 +20,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/save.md b/content/commands/save.md index 66240b5818..caa0e4f8d3 100644 --- a/content/commands/save.md +++ b/content/commands/save.md @@ -11,6 +11,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/scan.md b/content/commands/scan.md index e51f1a8720..21a91d89ad 100644 --- a/content/commands/scan.md +++ b/content/commands/scan.md @@ -31,6 +31,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/scard.md b/content/commands/scard.md index d6df35a37b..b570a106d3 100644 --- a/content/commands/scard.md +++ b/content/commands/scard.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/script-debug.md b/content/commands/script-debug.md index 76276d9067..84a68bbf9c 100644 --- a/content/commands/script-debug.md +++ b/content/commands/script-debug.md @@ -26,6 +26,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/script-exists.md b/content/commands/script-exists.md index 9b601a7af2..cffb504be5 100644 --- a/content/commands/script-exists.md +++ b/content/commands/script-exists.md @@ -15,6 +15,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/script-flush.md b/content/commands/script-flush.md index e042f02696..554d973292 100644 --- a/content/commands/script-flush.md +++ b/content/commands/script-flush.md @@ -24,6 +24,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/script-help.md b/content/commands/script-help.md index 0299fd06d0..4169981a8a 100644 --- a/content/commands/script-help.md +++ b/content/commands/script-help.md @@ -10,6 +10,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/script-kill.md b/content/commands/script-kill.md index 4592c84b59..d2fa255e92 100644 --- a/content/commands/script-kill.md +++ b/content/commands/script-kill.md @@ -10,6 +10,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/script-load.md b/content/commands/script-load.md index a8a7716eca..f32c47afce 100644 --- a/content/commands/script-load.md +++ b/content/commands/script-load.md @@ -14,6 +14,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/script.md b/content/commands/script.md index 4441f4ff66..3d797bad91 100644 --- a/content/commands/script.md +++ b/content/commands/script.md @@ -9,6 +9,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: Depends on subcommand. diff --git a/content/commands/sdiff.md b/content/commands/sdiff.md index a603c6372f..28f0e11fd1 100644 --- a/content/commands/sdiff.md +++ b/content/commands/sdiff.md @@ -17,6 +17,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/sdiffstore.md b/content/commands/sdiffstore.md index 2e811e0b2b..d86454688f 100644 --- a/content/commands/sdiffstore.md +++ b/content/commands/sdiffstore.md @@ -21,6 +21,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/select.md b/content/commands/select.md index 45401150ec..1c941ebf2e 100644 --- a/content/commands/select.md +++ b/content/commands/select.md @@ -14,6 +14,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/set.md b/content/commands/set.md index fec29e6985..abc0b944b8 100644 --- a/content/commands/set.md +++ b/content/commands/set.md @@ -67,6 +67,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/setbit.md b/content/commands/setbit.md index b48a12ea29..fe64c79acd 100644 --- a/content/commands/setbit.md +++ b/content/commands/setbit.md @@ -22,6 +22,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/setex.md b/content/commands/setex.md index 5b9261745c..ba4ae21437 100644 --- a/content/commands/setex.md +++ b/content/commands/setex.md @@ -22,6 +22,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/setnx.md b/content/commands/setnx.md index eecc8e3a1c..91783a48fb 100644 --- a/content/commands/setnx.md +++ b/content/commands/setnx.md @@ -19,6 +19,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/setrange.md b/content/commands/setrange.md index 61543ee45f..a8007a4034 100644 --- a/content/commands/setrange.md +++ b/content/commands/setrange.md @@ -22,6 +22,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/shutdown.md b/content/commands/shutdown.md index 0a634762fa..533eedd502 100644 --- a/content/commands/shutdown.md +++ b/content/commands/shutdown.md @@ -42,6 +42,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/sinter.md b/content/commands/sinter.md index ceedb2b223..2bbd56da07 100644 --- a/content/commands/sinter.md +++ b/content/commands/sinter.md @@ -17,6 +17,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/sintercard.md b/content/commands/sintercard.md index 0fce64b0f1..00f92f02c3 100644 --- a/content/commands/sintercard.md +++ b/content/commands/sintercard.md @@ -25,6 +25,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/sinterstore.md b/content/commands/sinterstore.md index 3ca37a754d..62d4502c9c 100644 --- a/content/commands/sinterstore.md +++ b/content/commands/sinterstore.md @@ -21,6 +21,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/sismember.md b/content/commands/sismember.md index eaaa620a89..9002ba3bf9 100644 --- a/content/commands/sismember.md +++ b/content/commands/sismember.md @@ -19,6 +19,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/slaveof.md b/content/commands/slaveof.md index 1aa402e479..615219b32e 100644 --- a/content/commands/slaveof.md +++ b/content/commands/slaveof.md @@ -35,6 +35,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/slowlog-get.md b/content/commands/slowlog-get.md index 2af295e3f1..1ba1491069 100644 --- a/content/commands/slowlog-get.md +++ b/content/commands/slowlog-get.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/slowlog-help.md b/content/commands/slowlog-help.md index 1b78f411f4..785e8ab5b0 100644 --- a/content/commands/slowlog-help.md +++ b/content/commands/slowlog-help.md @@ -9,6 +9,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/slowlog-len.md b/content/commands/slowlog-len.md index ec65c1f0be..73cd406190 100644 --- a/content/commands/slowlog-len.md +++ b/content/commands/slowlog-len.md @@ -11,6 +11,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/slowlog-reset.md b/content/commands/slowlog-reset.md index 09d4070821..e2ea85e1b2 100644 --- a/content/commands/slowlog-reset.md +++ b/content/commands/slowlog-reset.md @@ -11,6 +11,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/slowlog.md b/content/commands/slowlog.md index 994a451d8a..9caf29d77c 100644 --- a/content/commands/slowlog.md +++ b/content/commands/slowlog.md @@ -9,6 +9,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: Depends on subcommand. diff --git a/content/commands/smembers.md b/content/commands/smembers.md index 83ac2d911a..e04363645a 100644 --- a/content/commands/smembers.md +++ b/content/commands/smembers.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/smismember.md b/content/commands/smismember.md index 7109bdaa8b..3dc9929270 100644 --- a/content/commands/smismember.md +++ b/content/commands/smismember.md @@ -20,6 +20,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/smove.md b/content/commands/smove.md index f6d5e67596..aa1ad88413 100644 --- a/content/commands/smove.md +++ b/content/commands/smove.md @@ -23,6 +23,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/sort.md b/content/commands/sort.md index 6c562ebff1..746a92c9b7 100644 --- a/content/commands/sort.md +++ b/content/commands/sort.md @@ -67,6 +67,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -117,8 +118,7 @@ linkTitle: SORT since: 1.0.0 summary: Sorts the elements in a list, a set, or a sorted set, optionally storing the result. -syntax_fmt: "SORT key [BY\_pattern] [LIMIT\_offset count] [GET\_pattern [GET pattern -\ +syntax_fmt: "SORT key [BY\_pattern] [LIMIT\_offset count] [GET\_pattern [GET pattern\n\ \ ...]] [ASC | DESC] [ALPHA] [STORE\_destination]" syntax_str: "[BY\_pattern] [LIMIT\_offset count] [GET\_pattern [GET pattern ...]]\ \ [ASC | DESC] [ALPHA] [STORE\_destination]" diff --git a/content/commands/sort_ro.md b/content/commands/sort_ro.md index 1e3c4b834f..2772e6c3e3 100644 --- a/content/commands/sort_ro.md +++ b/content/commands/sort_ro.md @@ -61,6 +61,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -98,8 +99,7 @@ key_specs: linkTitle: SORT_RO since: 7.0.0 summary: Returns the sorted elements of a list, a set, or a sorted set. -syntax_fmt: "SORT_RO key [BY\_pattern] [LIMIT\_offset count] [GET\_pattern [GET -\ +syntax_fmt: "SORT_RO key [BY\_pattern] [LIMIT\_offset count] [GET\_pattern [GET\n\ \ pattern ...]] [ASC | DESC] [ALPHA]" syntax_str: "[BY\_pattern] [LIMIT\_offset count] [GET\_pattern [GET pattern ...]]\ \ [ASC | DESC] [ALPHA]" diff --git a/content/commands/spop.md b/content/commands/spop.md index f4d6025a9f..0de2c93633 100644 --- a/content/commands/spop.md +++ b/content/commands/spop.md @@ -21,6 +21,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/spublish.md b/content/commands/spublish.md index 0721886440..98c0e98d23 100644 --- a/content/commands/spublish.md +++ b/content/commands/spublish.md @@ -17,6 +17,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/srandmember.md b/content/commands/srandmember.md index 09fba0120f..5c1de9db8c 100644 --- a/content/commands/srandmember.md +++ b/content/commands/srandmember.md @@ -21,6 +21,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/srem.md b/content/commands/srem.md index 2d900693c6..bc2ed90ae5 100644 --- a/content/commands/srem.md +++ b/content/commands/srem.md @@ -20,6 +20,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/sscan.md b/content/commands/sscan.md index 8db218f43e..aec7141422 100644 --- a/content/commands/sscan.md +++ b/content/commands/sscan.md @@ -29,6 +29,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/ssubscribe.md b/content/commands/ssubscribe.md index b5455c2e06..8279c667c4 100644 --- a/content/commands/ssubscribe.md +++ b/content/commands/ssubscribe.md @@ -15,6 +15,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/strlen.md b/content/commands/strlen.md index d99031cc3f..6faec3b7f3 100644 --- a/content/commands/strlen.md +++ b/content/commands/strlen.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/subscribe.md b/content/commands/subscribe.md index 2c2508ecff..6430f9a6db 100644 --- a/content/commands/subscribe.md +++ b/content/commands/subscribe.md @@ -15,6 +15,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/substr.md b/content/commands/substr.md index a14d3790a9..c7822af04d 100644 --- a/content/commands/substr.md +++ b/content/commands/substr.md @@ -22,6 +22,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/sunion.md b/content/commands/sunion.md index db58b5df9f..948b8db10f 100644 --- a/content/commands/sunion.md +++ b/content/commands/sunion.md @@ -17,6 +17,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/sunionstore.md b/content/commands/sunionstore.md index de6db0b2a0..f788fd23b5 100644 --- a/content/commands/sunionstore.md +++ b/content/commands/sunionstore.md @@ -21,6 +21,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/sunsubscribe.md b/content/commands/sunsubscribe.md index 53f7e351ca..a90c6de641 100644 --- a/content/commands/sunsubscribe.md +++ b/content/commands/sunsubscribe.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/swapdb.md b/content/commands/swapdb.md index 7046166054..15b27e3228 100644 --- a/content/commands/swapdb.md +++ b/content/commands/swapdb.md @@ -19,6 +19,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/sync.md b/content/commands/sync.md index 0e419a1475..0acd70c204 100644 --- a/content/commands/sync.md +++ b/content/commands/sync.md @@ -11,6 +11,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/tdigest.add.md b/content/commands/tdigest.add.md index 71cf10760e..9412d1d884 100644 --- a/content/commands/tdigest.add.md +++ b/content/commands/tdigest.add.md @@ -19,6 +19,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(N) , where N is the number of samples to add diff --git a/content/commands/tdigest.byrank.md b/content/commands/tdigest.byrank.md index 2fbef16301..22c2872560 100644 --- a/content/commands/tdigest.byrank.md +++ b/content/commands/tdigest.byrank.md @@ -15,6 +15,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(N) where N is the number of ranks specified. @@ -26,8 +27,8 @@ linkTitle: TDIGEST.BYRANK module: Bloom since: 2.4.0 stack_path: docs/data-types/probabilistic -summary: Returns, for each input rank, a floating-point estimation of the value with - that rank +summary: Returns, for each input rank, a floating-point estimation of the value + with that rank syntax_fmt: TDIGEST.BYRANK key rank [rank ...] syntax_str: rank [rank ...] title: TDIGEST.BYRANK diff --git a/content/commands/tdigest.byrevrank.md b/content/commands/tdigest.byrevrank.md index b9e04f21da..fe98fe7b8b 100644 --- a/content/commands/tdigest.byrevrank.md +++ b/content/commands/tdigest.byrevrank.md @@ -15,19 +15,20 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(N) where N is the number of reverse ranks specified. -description: Returns, for each input reverse rank, an estimation of the floating-point - value with that reverse rank +description: Returns, for each input reverse rank, an estimation of the floating-point value + with that reverse rank group: tdigest hidden: false linkTitle: TDIGEST.BYREVRANK module: Bloom since: 2.4.0 stack_path: docs/data-types/probabilistic -summary: Returns, for each input reverse rank, an estimation of the floating-point - value with that reverse rank +summary: Returns, for each input reverse rank, an estimation of the floating-point value + with that reverse rank syntax_fmt: TDIGEST.BYREVRANK key reverse_rank [reverse_rank ...] syntax_str: reverse_rank [reverse_rank ...] title: TDIGEST.BYREVRANK diff --git a/content/commands/tdigest.cdf.md b/content/commands/tdigest.cdf.md index 6ea21a212e..18e9913de2 100644 --- a/content/commands/tdigest.cdf.md +++ b/content/commands/tdigest.cdf.md @@ -15,6 +15,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(N) where N is the number of values specified. diff --git a/content/commands/tdigest.create.md b/content/commands/tdigest.create.md index 235ac84e5f..71e394396d 100644 --- a/content/commands/tdigest.create.md +++ b/content/commands/tdigest.create.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/tdigest.info.md b/content/commands/tdigest.info.md index 9a0387ff6e..03082dd981 100644 --- a/content/commands/tdigest.info.md +++ b/content/commands/tdigest.info.md @@ -12,6 +12,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/tdigest.max.md b/content/commands/tdigest.max.md index 189e925e67..d52270b7e4 100644 --- a/content/commands/tdigest.max.md +++ b/content/commands/tdigest.max.md @@ -13,6 +13,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/tdigest.merge.md b/content/commands/tdigest.merge.md index 736f8da89c..aead1e8ea5 100644 --- a/content/commands/tdigest.merge.md +++ b/content/commands/tdigest.merge.md @@ -31,6 +31,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(N*K), where N is the number of centroids and K being the number of input @@ -43,8 +44,7 @@ module: Bloom since: 2.4.0 stack_path: docs/data-types/probabilistic summary: Merges multiple t-digest sketches into a single sketch -syntax_fmt: "TDIGEST.MERGE destination-key numkeys source-key [source-key ...] - \ +syntax_fmt: "TDIGEST.MERGE destination-key numkeys source-key [source-key ...]\n \ \ [COMPRESSION compression] [OVERRIDE]" syntax_str: numkeys source-key [source-key ...] [COMPRESSION compression] [OVERRIDE] title: TDIGEST.MERGE diff --git a/content/commands/tdigest.min.md b/content/commands/tdigest.min.md index 686e59396e..85431e6c0e 100644 --- a/content/commands/tdigest.min.md +++ b/content/commands/tdigest.min.md @@ -13,6 +13,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/tdigest.quantile.md b/content/commands/tdigest.quantile.md index def2d246dc..7372a6993b 100644 --- a/content/commands/tdigest.quantile.md +++ b/content/commands/tdigest.quantile.md @@ -15,11 +15,12 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(N) where N is the number of quantiles specified. -description: Returns, for each input fraction, a floating-point estimation of the - value that is smaller than the given fraction of observations +description: Returns, for each input fraction, a floating-point estimation of the value + that is smaller than the given fraction of observations group: tdigest hidden: false linkTitle: TDIGEST.QUANTILE diff --git a/content/commands/tdigest.rank.md b/content/commands/tdigest.rank.md index 6c40be6c5f..103c46fb04 100644 --- a/content/commands/tdigest.rank.md +++ b/content/commands/tdigest.rank.md @@ -15,11 +15,12 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(N) where N is the number of values specified. -description: Returns, for each floating-point input value, the estimated rank of the - value (the number of observations in the sketch that are smaller than the value +description: Returns, for each floating-point input value, 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) group: tdigest hidden: false @@ -27,9 +28,9 @@ linkTitle: TDIGEST.RANK module: Bloom since: 2.4.0 stack_path: docs/data-types/probabilistic -summary: Returns, for each floating-point input value, 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) +summary: Returns, for each floating-point input value, 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) syntax_fmt: TDIGEST.RANK key value [value ...] syntax_str: value [value ...] title: TDIGEST.RANK diff --git a/content/commands/tdigest.reset.md b/content/commands/tdigest.reset.md index e4649b277c..c468749743 100644 --- a/content/commands/tdigest.reset.md +++ b/content/commands/tdigest.reset.md @@ -13,6 +13,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/tdigest.revrank.md b/content/commands/tdigest.revrank.md index 88a5d16172..643de30ba3 100644 --- a/content/commands/tdigest.revrank.md +++ b/content/commands/tdigest.revrank.md @@ -15,12 +15,13 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(N) where N is the number of values specified. -description: Returns, for each floating-point input value, 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) +description: Returns, for each floating-point input value, 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) group: tdigest hidden: false linkTitle: TDIGEST.REVRANK diff --git a/content/commands/tdigest.trimmed_mean.md b/content/commands/tdigest.trimmed_mean.md index 31e5c77bac..ea589d6eeb 100644 --- a/content/commands/tdigest.trimmed_mean.md +++ b/content/commands/tdigest.trimmed_mean.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(N) where N is the number of centroids diff --git a/content/commands/time.md b/content/commands/time.md index c47afb278e..cf69a72237 100644 --- a/content/commands/time.md +++ b/content/commands/time.md @@ -9,6 +9,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/topk.add.md b/content/commands/topk.add.md index 4564c68b85..8932b0bd50 100644 --- a/content/commands/topk.add.md +++ b/content/commands/topk.add.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(n * k) where n is the number of items and k is the depth diff --git a/content/commands/topk.count.md b/content/commands/topk.count.md index 756df45f0e..4ae4b72e58 100644 --- a/content/commands/topk.count.md +++ b/content/commands/topk.count.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(n) where n is the number of items diff --git a/content/commands/topk.incrby.md b/content/commands/topk.incrby.md index 6b99db61d0..8fb6cc06d5 100644 --- a/content/commands/topk.incrby.md +++ b/content/commands/topk.incrby.md @@ -21,6 +21,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(n * k * incr) where n is the number of items, k is the depth and incr diff --git a/content/commands/topk.info.md b/content/commands/topk.info.md index 4488996c93..afd21681a9 100644 --- a/content/commands/topk.info.md +++ b/content/commands/topk.info.md @@ -13,6 +13,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/topk.list.md b/content/commands/topk.list.md index 0e1bdd4a10..9268bc28d7 100644 --- a/content/commands/topk.list.md +++ b/content/commands/topk.list.md @@ -17,6 +17,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(k*log(k)) where k is the value of top-k diff --git a/content/commands/topk.query.md b/content/commands/topk.query.md index 79cf58dc46..8295f65fbd 100644 --- a/content/commands/topk.query.md +++ b/content/commands/topk.query.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(n) where n is the number of items diff --git a/content/commands/topk.reserve.md b/content/commands/topk.reserve.md index f010a00819..e29d9c4657 100644 --- a/content/commands/topk.reserve.md +++ b/content/commands/topk.reserve.md @@ -25,6 +25,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/touch.md b/content/commands/touch.md index 1c63b1ff27..574c5f85bb 100644 --- a/content/commands/touch.md +++ b/content/commands/touch.md @@ -17,6 +17,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/ts.add.md b/content/commands/ts.add.md index a324e2323e..86fb05980a 100644 --- a/content/commands/ts.add.md +++ b/content/commands/ts.add.md @@ -73,6 +73,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(M) when M is the amount of compaction rules or O(1) with no compaction @@ -84,30 +85,16 @@ module: TimeSeries since: 1.0.0 stack_path: docs/data-types/timeseries summary: Append a sample to a time series -syntax: "TS.ADD key timestamp value - [RETENTION retentionPeriod] - [ENCODING\ - \ ] - [CHUNK_SIZE size] - [DUPLICATE_POLICY policy]\ - \ - [ON_DUPLICATE policy_ovr] - [IGNORE ignoreMaxTimediff ignoreMaxValDiff]\ - \ - [LABELS [label value ...]] -" -syntax_fmt: "TS.ADD key timestamp value [RETENTION\_retentionPeriod] - [ENCODING\_\ - ] [CHUNK_SIZE\_size] - [DUPLICATE_POLICY\_policy] -\ - \ [ON_DUPLICATE\_] - [IGNORE ignoreMaxTimediff\ - \ ignoreMaxValDiff] - [LABELS [label value ...]]" -syntax_str: "timestamp value [RETENTION\_retentionPeriod] [ENCODING\_] [CHUNK_SIZE\_size] [DUPLICATE_POLICY\_policy] [ON_DUPLICATE\_] [LABELS [label value ...]]" +syntax: "TS.ADD key timestamp value \n [RETENTION retentionPeriod] \n [ENCODING\ + \ ] \n [CHUNK_SIZE size] \n [DUPLICATE_POLICY policy] \n [ON_DUPLICATE policy_ovr] \n\ + \ [IGNORE ignoreMaxTimediff ignoreMaxValDiff] \n\ + \ [LABELS [label value ...]]\n" +syntax_fmt: "TS.ADD key timestamp value [RETENTION\_retentionPeriod]\n [ENCODING\_\ + ] [CHUNK_SIZE\_size]\n [DUPLICATE_POLICY\_policy] \n [ON_DUPLICATE\_]\n [IGNORE ignoreMaxTimediff ignoreMaxValDiff]\n [LABELS\ [label value ...]]" +syntax_str: "timestamp value [RETENTION\_retentionPeriod] [ENCODING\_] [CHUNK_SIZE\_size] [DUPLICATE_POLICY\_policy] [ON_DUPLICATE\_] [LABELS\ [label value ...]]" title: TS.ADD --- diff --git a/content/commands/ts.alter.md b/content/commands/ts.alter.md index 230d5cb5cb..eb1e66c2cc 100644 --- a/content/commands/ts.alter.md +++ b/content/commands/ts.alter.md @@ -54,6 +54,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(N) where N is the number of labels requested to update @@ -67,24 +68,12 @@ since: 1.0.0 stack_path: docs/data-types/timeseries summary: Update the retention, chunk size, duplicate policy, and labels of an existing time series -syntax: "TS.ALTER key - [RETENTION retentionPeriod] - [CHUNK_SIZE size] - [DUPLICATE_POLICY\ - \ policy] - [IGNORE ignoreMaxTimediff ignoreMaxValDiff] - [LABELS [label value\ - \ ...]] -" -syntax_fmt: "TS.ALTER key [RETENTION\_retentionPeriod] [CHUNK_SIZE\_size] - [DUPLICATE_POLICY\_\ - ] - [IGNORE ignoreMaxTimediff ignoreMaxValDiff]\ - \ - [LABELS [label value ...]]" +syntax: "TS.ALTER key \n [RETENTION retentionPeriod] \n [CHUNK_SIZE size] \n [DUPLICATE_POLICY\ + \ policy] \n [IGNORE ignoreMaxTimediff ignoreMaxValDiff] \n [LABELS [label value ...]]\n" +syntax_fmt: "TS.ALTER key [RETENTION\_retentionPeriod] [CHUNK_SIZE\_size]\n [DUPLICATE_POLICY\_\ + ]\n [IGNORE ignoreMaxTimediff ignoreMaxValDiff] \n [LABELS\ [label value ...]]" syntax_str: "[RETENTION\_retentionPeriod] [CHUNK_SIZE\_size] [DUPLICATE_POLICY\_] [IGNORE ignoreMaxTimediff ignoreMaxValDiff]\ - \ [LABELS [label value ...]]" + \ | FIRST | LAST | MIN | MAX | SUM>] [IGNORE ignoreMaxTimediff ignoreMaxValDiff] [LABELS\ [label value ...]]" title: TS.ALTER --- diff --git a/content/commands/ts.create.md b/content/commands/ts.create.md index ef13117909..41d8b0d594 100644 --- a/content/commands/ts.create.md +++ b/content/commands/ts.create.md @@ -65,6 +65,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) @@ -76,24 +77,11 @@ module: TimeSeries since: 1.0.0 stack_path: docs/data-types/timeseries summary: Create a new time series -syntax: "TS.CREATE key - [RETENTION retentionPeriod] - [ENCODING ]\ - \ - [CHUNK_SIZE size] - [DUPLICATE_POLICY policy] - [IGNORE ignoreMaxTimediff\ - \ ignoreMaxValDiff] - [LABELS [label value ...]] -" -syntax_fmt: "TS.CREATE key [RETENTION\_retentionPeriod] [ENCODING\_] [CHUNK_SIZE\_size] [DUPLICATE_POLICY\_] - [IGNORE\_ignoreMaxTimediff\_ignoreMaxValDiff] - [LABELS\_\ - [label value ...]]" +syntax: "TS.CREATE key \n [RETENTION retentionPeriod] \n [ENCODING ]\ + \ \n [CHUNK_SIZE size] \n [DUPLICATE_POLICY policy] \n [IGNORE ignoreMaxTimediff ignoreMaxValDiff] \n [LABELS [label value ...]]\n" +syntax_fmt: "TS.CREATE key [RETENTION\_retentionPeriod] [ENCODING\_] [CHUNK_SIZE\_size] [DUPLICATE_POLICY\_]\n\ \ [IGNORE\_ignoreMaxTimediff\_ignoreMaxValDiff]\n\ \ [LABELS\_[label value ...]]" syntax_str: "[RETENTION\_retentionPeriod] [ENCODING\_]\ \ [CHUNK_SIZE\_size] [DUPLICATE_POLICY\_]\ \ [IGNORE\_ignoreMaxTimediff\_ignoreMaxValDiff] [LABELS\_[label value ...]]" diff --git a/content/commands/ts.createrule.md b/content/commands/ts.createrule.md index f4e0b05009..3de94bf7b9 100644 --- a/content/commands/ts.createrule.md +++ b/content/commands/ts.createrule.md @@ -65,6 +65,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) @@ -76,15 +77,10 @@ module: TimeSeries since: 1.0.0 stack_path: docs/data-types/timeseries summary: Create a compaction rule -syntax: "TS.CREATERULE sourceKey destKey - AGGREGATION aggregator bucketDuration\ - \ - [alignTimestamp] -" -syntax_fmt: "TS.CREATERULE sourceKey destKey AGGREGATION\_ bucketDuration\ +syntax: "TS.CREATERULE sourceKey destKey \n AGGREGATION aggregator bucketDuration\ + \ \n [alignTimestamp]\n" +syntax_fmt: "TS.CREATERULE sourceKey destKey AGGREGATION\_ bucketDuration\ \ [alignTimestamp]" syntax_str: "destKey AGGREGATION\_ bucketDuration [alignTimestamp]" diff --git a/content/commands/ts.decrby.md b/content/commands/ts.decrby.md index 93639cdcc6..56410ba21a 100644 --- a/content/commands/ts.decrby.md +++ b/content/commands/ts.decrby.md @@ -52,6 +52,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(M) when M is the amount of compaction rules or O(1) with no compaction @@ -67,26 +68,12 @@ stack_path: docs/data-types/timeseries summary: Decrease the value of the sample with the maximum existing timestamp, or create a new sample with a value equal to the value of the sample with the maximum existing timestamp with a given decrement -syntax: "TS.DECRBY key subtrahend - [TIMESTAMP timestamp] - [RETENTION retentionPeriod]\ - \ - [ENCODING ] - [CHUNK_SIZE size] - [DUPLICATE_POLICY\ - \ policy] - [IGNORE ignoreMaxTimediff ignoreMaxValDiff] - [LABELS [label value\ - \ ...]] -" -syntax_fmt: "TS.DECRBY key value [TIMESTAMP\_timestamp] - [RETENTION\_retentionPeriod]\ - \ [ENCODING\_] [CHUNK_SIZE\_size] - [DUPLICATE_POLICY\_\ - policy] [LABELS\_[label value ...]]" -syntax_str: "value [TIMESTAMP\_timestamp] [RETENTION\_retentionPeriod] [ENCODING\_\ - ] [CHUNK_SIZE\_size] [DUPLICATE_POLICY\_policy] [LABELS\_\ - [label value ...]]" +syntax: "TS.DECRBY key subtrahend \n [TIMESTAMP timestamp] \n [RETENTION retentionPeriod]\ + \ \n [ENCODING ] \n [CHUNK_SIZE size] \n [DUPLICATE_POLICY policy] \n [IGNORE ignoreMaxTimediff ignoreMaxValDiff]\ \ \n\ \ [LABELS [label value ...]]\n" +syntax_fmt: "TS.DECRBY key value [TIMESTAMP\_timestamp]\n [RETENTION\_retentionPeriod]\ + \ [ENCODING\_] [CHUNK_SIZE\_size]\n [DUPLICATE_POLICY\_policy] [LABELS\_[label value ...]]" +syntax_str: "value [TIMESTAMP\_timestamp] [RETENTION\_retentionPeriod] [ENCODING\_]\ + \ [CHUNK_SIZE\_size] [DUPLICATE_POLICY\_policy] [LABELS\_[label value ...]]" title: TS.DECRBY --- diff --git a/content/commands/ts.del.md b/content/commands/ts.del.md index 2f2808fa47..53f87180ae 100644 --- a/content/commands/ts.del.md +++ b/content/commands/ts.del.md @@ -17,6 +17,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(N) where N is the number of data points that will be removed diff --git a/content/commands/ts.deleterule.md b/content/commands/ts.deleterule.md index 8b9d5cbd24..37ae079d19 100644 --- a/content/commands/ts.deleterule.md +++ b/content/commands/ts.deleterule.md @@ -15,6 +15,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) diff --git a/content/commands/ts.get.md b/content/commands/ts.get.md index 7292b48d9b..24ff212d58 100644 --- a/content/commands/ts.get.md +++ b/content/commands/ts.get.md @@ -17,6 +17,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) @@ -28,9 +29,7 @@ module: TimeSeries since: 1.0.0 stack_path: docs/data-types/timeseries summary: Get the sample with the highest timestamp from a given time series -syntax: "TS.GET key - [LATEST] -" +syntax: "TS.GET key \n [LATEST]\n" syntax_fmt: TS.GET key [LATEST] syntax_str: '[LATEST]' title: TS.GET diff --git a/content/commands/ts.incrby.md b/content/commands/ts.incrby.md index ca2732cd10..7d6c6f70b1 100644 --- a/content/commands/ts.incrby.md +++ b/content/commands/ts.incrby.md @@ -52,6 +52,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(M) when M is the amount of compaction rules or O(1) with no compaction @@ -67,26 +68,13 @@ stack_path: docs/data-types/timeseries summary: Increase the value of the sample with the maximum existing timestamp, or create a new sample with a value equal to the value of the sample with the maximum existing timestamp with a given increment -syntax: "TS.INCRBY key addend - [TIMESTAMP timestamp] - [RETENTION retentionPeriod]\ - \ - [ENCODING ] - [CHUNK_SIZE size] - [DUPLICATE_POLICY\ - \ policy] - [IGNORE ignoreMaxTimediff ignoreMaxValDiff] - [LABELS [label value\ - \ ...]] -" -syntax_fmt: "TS.INCRBY key value [TIMESTAMP\_timestamp] - [RETENTION\_retentionPeriod]\ - \ [ENCODING\_] [CHUNK_SIZE\_size] - [DUPLICATE_POLICY\_\ - policy] [LABELS\_[label value ...]]" -syntax_str: "value [TIMESTAMP\_timestamp] [RETENTION\_retentionPeriod] [ENCODING\_\ - ] [CHUNK_SIZE\_size] [DUPLICATE_POLICY\_policy] [LABELS\_\ - [label value ...]]" +syntax: "TS.INCRBY key addend \n [TIMESTAMP timestamp] \n [RETENTION retentionPeriod]\ + \ \n [ENCODING ] \n [CHUNK_SIZE size] \n [DUPLICATE_POLICY policy] \n [IGNORE ignoreMaxTimediff ignoreMaxValDiff]\ + \ \n [LABELS [label value ...]]\n" +syntax_fmt: "TS.INCRBY key value [TIMESTAMP\_timestamp]\n [RETENTION\_retentionPeriod]\ + \ [ENCODING\_] [CHUNK_SIZE\_size]\n [DUPLICATE_POLICY\_policy] [LABELS\_[label value ...]]" +syntax_str: "value [TIMESTAMP\_timestamp] [RETENTION\_retentionPeriod] [ENCODING\_]\ + \ [CHUNK_SIZE\_size] [DUPLICATE_POLICY\_policy] [LABELS\_[label value ...]]" title: TS.INCRBY --- diff --git a/content/commands/ts.info.md b/content/commands/ts.info.md index 33243ecb2b..527c67f81b 100644 --- a/content/commands/ts.info.md +++ b/content/commands/ts.info.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(1) @@ -27,9 +28,7 @@ module: TimeSeries since: 1.0.0 stack_path: docs/data-types/timeseries summary: Returns information and statistics for a time series -syntax: "TS.INFO key - [DEBUG] -" +syntax: "TS.INFO key \n [DEBUG]\n" syntax_fmt: TS.INFO key [DEBUG] syntax_str: '[DEBUG]' title: TS.INFO diff --git a/content/commands/ts.madd.md b/content/commands/ts.madd.md index 593766b299..d9abcaac7f 100644 --- a/content/commands/ts.madd.md +++ b/content/commands/ts.madd.md @@ -21,6 +21,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(N*M) when N is the amount of series updated and M is the amount of compaction diff --git a/content/commands/ts.mget.md b/content/commands/ts.mget.md index 00dd9796e7..ef3870cd6a 100644 --- a/content/commands/ts.mget.md +++ b/content/commands/ts.mget.md @@ -48,6 +48,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(n) where n is the number of time-series that match the filters @@ -64,10 +65,8 @@ summary: Get the sample with the highest timestamp from each time series matchin syntax: 'TS.MGET [LATEST] [WITHLABELS | ] FILTER filterExpr... ' -syntax_fmt: "TS.MGET [LATEST] [WITHLABELS | ] -\ - \ FILTER\_]\n\ + \ FILTER\_" syntax_str: "[WITHLABELS | ] FILTER\_] - [COUNT\ - \ count] - [[ALIGN align] AGGREGATION aggregator bucketDuration [BUCKETTIMESTAMP\ - \ bt] [EMPTY]] - FILTER filterExpr... - [GROUPBY label REDUCE reducer] -" -syntax_fmt: "TS.MRANGE fromTimestamp toTimestamp [LATEST] [FILTER_BY_TS\_Timestamp -\ - \ [Timestamp ...]] [FILTER_BY_VALUE min max] [WITHLABELS | - ] [COUNT\_count] [[ALIGN\_value] - AGGREGATION\_ bucketDuration - [BUCKETTIMESTAMP] [EMPTY]] FILTER\_ [GROUPBY label REDUCE - reducer]" +syntax: "TS.MRANGE fromTimestamp toTimestamp\n [LATEST]\n [FILTER_BY_TS ts...]\n\ + \ [FILTER_BY_VALUE min max]\n [WITHLABELS | ]\n [COUNT\ + \ count]\n [[ALIGN align] AGGREGATION aggregator bucketDuration [BUCKETTIMESTAMP\ + \ bt] [EMPTY]]\n FILTER filterExpr...\n [GROUPBY label REDUCE reducer]\n" +syntax_fmt: "TS.MRANGE fromTimestamp toTimestamp [LATEST] [FILTER_BY_TS\_Timestamp\n\ + \ [Timestamp ...]] [FILTER_BY_VALUE min max] [WITHLABELS |\n ] [COUNT\_count] [[ALIGN\_value]\n AGGREGATION\_ bucketDuration\n\ + \ [BUCKETTIMESTAMP] [EMPTY]] FILTER\_\ + \ [GROUPBY label REDUCE\n reducer]" syntax_str: "toTimestamp [LATEST] [FILTER_BY_TS\_Timestamp [Timestamp ...]] [FILTER_BY_VALUE\ \ min max] [WITHLABELS | ] [COUNT\_count] [[ALIGN\_\ value] AGGREGATION\_] - [COUNT\ - \ count] - [[ALIGN align] AGGREGATION aggregator bucketDuration [BUCKETTIMESTAMP\ - \ bt] [EMPTY]] - FILTER filterExpr... - [GROUPBY label REDUCE reducer] -" -syntax_fmt: "TS.MREVRANGE fromTimestamp toTimestamp [LATEST] - [FILTER_BY_TS\_Timestamp\ - \ [Timestamp ...]] [FILTER_BY_VALUE min max] - [WITHLABELS | ] [COUNT\_count] - [[ALIGN\_value] AGGREGATION\_ -\ - \ bucketDuration [BUCKETTIMESTAMP] [EMPTY]] FILTER\_ [GROUPBY label REDUCE - reducer]" +syntax: "TS.MREVRANGE fromTimestamp toTimestamp\n [LATEST]\n [FILTER_BY_TS ts...]\n\ + \ [FILTER_BY_VALUE min max]\n [WITHLABELS | ]\n [COUNT\ + \ count]\n [[ALIGN align] AGGREGATION aggregator bucketDuration [BUCKETTIMESTAMP\ + \ bt] [EMPTY]]\n FILTER filterExpr...\n [GROUPBY label REDUCE reducer]\n" +syntax_fmt: "TS.MREVRANGE fromTimestamp toTimestamp [LATEST]\n [FILTER_BY_TS\_Timestamp\ + \ [Timestamp ...]] [FILTER_BY_VALUE min max]\n [WITHLABELS | ] [COUNT\_count]\n [[ALIGN\_value] AGGREGATION\_\n\ + \ bucketDuration [BUCKETTIMESTAMP] [EMPTY]] FILTER\_ [GROUPBY label REDUCE\n reducer]" syntax_str: "toTimestamp [LATEST] [FILTER_BY_TS\_Timestamp [Timestamp ...]] [FILTER_BY_VALUE\ \ min max] [WITHLABELS | ] [COUNT\_count] [[ALIGN\_\ value] AGGREGATION\_" +syntax_fmt: "TS.QUERYINDEX " syntax_str: '' title: TS.QUERYINDEX --- diff --git a/content/commands/ts.range.md b/content/commands/ts.range.md index 7b15c52787..7a30e540bb 100644 --- a/content/commands/ts.range.md +++ b/content/commands/ts.range.md @@ -105,6 +105,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: O(n/m+k) where n = Number of data points, m = Chunk size (data points @@ -117,23 +118,13 @@ module: TimeSeries since: 1.0.0 stack_path: docs/data-types/timeseries summary: Query a range in forward direction -syntax: "TS.RANGE key fromTimestamp toTimestamp - [LATEST] - [FILTER_BY_TS ts...] -\ - \ [FILTER_BY_VALUE min max] - [COUNT count] - [[ALIGN align] AGGREGATION aggregator\ - \ bucketDuration [BUCKETTIMESTAMP bt] [EMPTY]] -" -syntax_fmt: "TS.RANGE key fromTimestamp toTimestamp [LATEST] - [FILTER_BY_TS\_Timestamp\ - \ [Timestamp ...]] [FILTER_BY_VALUE min max] - [COUNT\_count] [[ALIGN\_value] AGGREGATION\_\ - - bucketDuration [BUCKETTIMESTAMP] [EMPTY]]" +syntax: "TS.RANGE key fromTimestamp toTimestamp\n [LATEST]\n [FILTER_BY_TS ts...]\n\ + \ [FILTER_BY_VALUE min max]\n [COUNT count] \n [[ALIGN align] AGGREGATION aggregator\ + \ bucketDuration [BUCKETTIMESTAMP bt] [EMPTY]]\n" +syntax_fmt: "TS.RANGE key fromTimestamp toTimestamp [LATEST]\n [FILTER_BY_TS\_Timestamp\ + \ [Timestamp ...]] [FILTER_BY_VALUE min max]\n [COUNT\_count] [[ALIGN\_value] AGGREGATION\_\ + \n bucketDuration [BUCKETTIMESTAMP] [EMPTY]]" syntax_str: "fromTimestamp toTimestamp [LATEST] [FILTER_BY_TS\_Timestamp [Timestamp\ \ ...]] [FILTER_BY_VALUE min max] [COUNT\_count] [[ALIGN\_value] AGGREGATION\_ - bucketDuration [BUCKETTIMESTAMP] [EMPTY]]" +syntax: "TS.REVRANGE key fromTimestamp toTimestamp\n [LATEST]\n [FILTER_BY_TS ts...]\n\ + \ [FILTER_BY_VALUE min max]\n [COUNT count]\n [[ALIGN align] AGGREGATION aggregator\ + \ bucketDuration [BUCKETTIMESTAMP bt] [EMPTY]]\n" +syntax_fmt: "TS.REVRANGE key fromTimestamp toTimestamp [LATEST]\n [FILTER_BY_TS\_\ + Timestamp [Timestamp ...]] [FILTER_BY_VALUE min max]\n [COUNT\_count] [[ALIGN\_\ + value] AGGREGATION\_\n bucketDuration [BUCKETTIMESTAMP] [EMPTY]]" syntax_str: "fromTimestamp toTimestamp [LATEST] [FILTER_BY_TS\_Timestamp [Timestamp\ \ ...]] [FILTER_BY_VALUE min max] [COUNT\_count] [[ALIGN\_value] AGGREGATION\_ -\ - \ [= | ~] threshold [LIMIT\_count]] <* | id> field value [field value - ...]" +syntax_fmt: "XADD key [NOMKSTREAM] [KEEPREF | DELREF | ACKED] [\n\ + \ [= | ~] threshold [LIMIT\_count]] <* | id> field value [field value\n ...]" syntax_str: "[NOMKSTREAM] [KEEPREF | DELREF | ACKED] [ [= | ~] threshold\ \ [LIMIT\_count]] <* | id> field value [field value ...]" title: XADD diff --git a/content/commands/xautoclaim.md b/content/commands/xautoclaim.md index d2d42af27b..9639153eb7 100644 --- a/content/commands/xautoclaim.md +++ b/content/commands/xautoclaim.md @@ -38,6 +38,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -71,8 +72,7 @@ linkTitle: XAUTOCLAIM since: 6.2.0 summary: Changes, or acquires, ownership of messages in a consumer group, as if the messages were delivered to as consumer group member. -syntax_fmt: "XAUTOCLAIM key group consumer min-idle-time start [COUNT\_count] - [JUSTID]" +syntax_fmt: "XAUTOCLAIM key group consumer min-idle-time start [COUNT\_count]\n [JUSTID]" syntax_str: "group consumer min-idle-time start [COUNT\_count] [JUSTID]" title: XAUTOCLAIM --- diff --git a/content/commands/xclaim.md b/content/commands/xclaim.md index a6e0122655..41433ea6ed 100644 --- a/content/commands/xclaim.md +++ b/content/commands/xclaim.md @@ -59,6 +59,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -89,10 +90,8 @@ linkTitle: XCLAIM since: 5.0.0 summary: Changes, or acquires, ownership of a message in a consumer group, as if the message was delivered a consumer group member. -syntax_fmt: "XCLAIM key group consumer min-idle-time id [id ...] [IDLE\_ms] - [TIME\_\ - unix-time-milliseconds] [RETRYCOUNT\_count] [FORCE] [JUSTID] - [LASTID\_lastid]" +syntax_fmt: "XCLAIM key group consumer min-idle-time id [id ...] [IDLE\_ms]\n [TIME\_\ + unix-time-milliseconds] [RETRYCOUNT\_count] [FORCE] [JUSTID]\n [LASTID\_lastid]" syntax_str: "group consumer min-idle-time id [id ...] [IDLE\_ms] [TIME\_unix-time-milliseconds]\ \ [RETRYCOUNT\_count] [FORCE] [JUSTID] [LASTID\_lastid]" title: XCLAIM diff --git a/content/commands/xdel.md b/content/commands/xdel.md index c8e6765efa..ad1fbb1c08 100644 --- a/content/commands/xdel.md +++ b/content/commands/xdel.md @@ -20,6 +20,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/xdelex.md b/content/commands/xdelex.md index 3641d3e8b6..ae3860e6b4 100644 --- a/content/commands/xdelex.md +++ b/content/commands/xdelex.md @@ -43,6 +43,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/xgroup-create.md b/content/commands/xgroup-create.md index fc16ca7740..97005f26ec 100644 --- a/content/commands/xgroup-create.md +++ b/content/commands/xgroup-create.md @@ -39,6 +39,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -67,8 +68,7 @@ key_specs: linkTitle: XGROUP CREATE since: 5.0.0 summary: Creates a consumer group. -syntax_fmt: "XGROUP CREATE key group [MKSTREAM] - [ENTRIESREAD\_entries-read]" +syntax_fmt: "XGROUP CREATE key group [MKSTREAM]\n [ENTRIESREAD\_entries-read]" syntax_str: "group [MKSTREAM] [ENTRIESREAD\_entries-read]" title: XGROUP CREATE --- diff --git a/content/commands/xgroup-createconsumer.md b/content/commands/xgroup-createconsumer.md index f27ef29cf7..e5f5f414bb 100644 --- a/content/commands/xgroup-createconsumer.md +++ b/content/commands/xgroup-createconsumer.md @@ -22,6 +22,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/xgroup-delconsumer.md b/content/commands/xgroup-delconsumer.md index bd8bb30fab..56933271fe 100644 --- a/content/commands/xgroup-delconsumer.md +++ b/content/commands/xgroup-delconsumer.md @@ -22,6 +22,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/xgroup-destroy.md b/content/commands/xgroup-destroy.md index 2f5a01a280..a494e7e020 100644 --- a/content/commands/xgroup-destroy.md +++ b/content/commands/xgroup-destroy.md @@ -19,6 +19,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/xgroup-help.md b/content/commands/xgroup-help.md index 7f5fb3e46c..b70230183e 100644 --- a/content/commands/xgroup-help.md +++ b/content/commands/xgroup-help.md @@ -10,6 +10,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/xgroup-setid.md b/content/commands/xgroup-setid.md index 05b69ba5fd..4d0023f4ca 100644 --- a/content/commands/xgroup-setid.md +++ b/content/commands/xgroup-setid.md @@ -34,6 +34,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/xgroup.md b/content/commands/xgroup.md index 561bf72366..06ba07cacb 100644 --- a/content/commands/xgroup.md +++ b/content/commands/xgroup.md @@ -9,6 +9,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: Depends on subcommand. diff --git a/content/commands/xinfo-consumers.md b/content/commands/xinfo-consumers.md index 67bac4cec9..f93a96d8ee 100644 --- a/content/commands/xinfo-consumers.md +++ b/content/commands/xinfo-consumers.md @@ -19,6 +19,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/xinfo-groups.md b/content/commands/xinfo-groups.md index 33fe5e2778..743ca9bed3 100644 --- a/content/commands/xinfo-groups.md +++ b/content/commands/xinfo-groups.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/xinfo-help.md b/content/commands/xinfo-help.md index cfa0411c2f..60bcfb7f0b 100644 --- a/content/commands/xinfo-help.md +++ b/content/commands/xinfo-help.md @@ -10,6 +10,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/xinfo-stream.md b/content/commands/xinfo-stream.md index 84bdd463f9..dda0d016d5 100644 --- a/content/commands/xinfo-stream.md +++ b/content/commands/xinfo-stream.md @@ -29,6 +29,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/xinfo.md b/content/commands/xinfo.md index 6b35486618..aab40f11ce 100644 --- a/content/commands/xinfo.md +++ b/content/commands/xinfo.md @@ -9,6 +9,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients complexity: Depends on subcommand. diff --git a/content/commands/xlen.md b/content/commands/xlen.md index 1c424ce496..1b7f3ec161 100644 --- a/content/commands/xlen.md +++ b/content/commands/xlen.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/xpending.md b/content/commands/xpending.md index 0984b2e264..8e45f2d9f4 100644 --- a/content/commands/xpending.md +++ b/content/commands/xpending.md @@ -42,6 +42,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/xrange.md b/content/commands/xrange.md index 57e93eae98..5b02fc604d 100644 --- a/content/commands/xrange.md +++ b/content/commands/xrange.md @@ -27,6 +27,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/xread.md b/content/commands/xread.md index dfe7c184f9..0c07a45ae0 100644 --- a/content/commands/xread.md +++ b/content/commands/xread.md @@ -36,6 +36,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -64,8 +65,7 @@ linkTitle: XREAD since: 5.0.0 summary: Returns messages from multiple streams with IDs greater than the ones requested. Blocks until a message is available otherwise. -syntax_fmt: "XREAD [COUNT\_count] [BLOCK\_milliseconds] STREAMS\_key [key ...] id -\ +syntax_fmt: "XREAD [COUNT\_count] [BLOCK\_milliseconds] STREAMS\_key [key ...] id\n\ \ [id ...]" syntax_str: "[BLOCK\_milliseconds] STREAMS\_key [key ...] id [id ...]" title: XREAD diff --git a/content/commands/xreadgroup.md b/content/commands/xreadgroup.md index e37d657df7..102696ec9a 100644 --- a/content/commands/xreadgroup.md +++ b/content/commands/xreadgroup.md @@ -51,6 +51,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -83,8 +84,7 @@ linkTitle: XREADGROUP since: 5.0.0 summary: Returns new or historical messages from a stream for a consumer in a group. Blocks until a message is available otherwise. -syntax_fmt: "XREADGROUP GROUP\_group consumer [COUNT\_count] [BLOCK\_milliseconds] -\ +syntax_fmt: "XREADGROUP GROUP\_group consumer [COUNT\_count] [BLOCK\_milliseconds]\n\ \ [NOACK] STREAMS\_key [key ...] id [id ...]" syntax_str: "[COUNT\_count] [BLOCK\_milliseconds] [NOACK] STREAMS\_key [key ...] id\ \ [id ...]" diff --git a/content/commands/xrevrange.md b/content/commands/xrevrange.md index 36fca24cbb..39dd1dc668 100644 --- a/content/commands/xrevrange.md +++ b/content/commands/xrevrange.md @@ -27,6 +27,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/xsetid.md b/content/commands/xsetid.md index b7743aa496..d492ad6ac1 100644 --- a/content/commands/xsetid.md +++ b/content/commands/xsetid.md @@ -31,6 +31,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -60,8 +61,7 @@ key_specs: linkTitle: XSETID since: 5.0.0 summary: An internal command for replicating stream values. -syntax_fmt: "XSETID key last-id [ENTRIESADDED\_entries-added] - [MAXDELETEDID\_max-deleted-id]" +syntax_fmt: "XSETID key last-id [ENTRIESADDED\_entries-added]\n [MAXDELETEDID\_max-deleted-id]" syntax_str: "last-id [ENTRIESADDED\_entries-added] [MAXDELETEDID\_max-deleted-id]" title: XSETID --- diff --git a/content/commands/xtrim.md b/content/commands/xtrim.md index 624ea8663f..4c030032f3 100644 --- a/content/commands/xtrim.md +++ b/content/commands/xtrim.md @@ -68,6 +68,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -101,8 +102,7 @@ key_specs: linkTitle: XTRIM since: 5.0.0 summary: Deletes messages from the beginning of a stream. -syntax_fmt: "XTRIM key [= | ~] threshold [LIMIT\_count] [KEEPREF -\ +syntax_fmt: "XTRIM key [= | ~] threshold [LIMIT\_count] [KEEPREF\n\ \ | DELREF | ACKED]" syntax_str: " [= | ~] threshold [LIMIT\_count] [KEEPREF | DELREF |\ \ ACKED]" diff --git a/content/commands/zadd.md b/content/commands/zadd.md index 2c2f19aaf3..fde6e7535c 100644 --- a/content/commands/zadd.md +++ b/content/commands/zadd.md @@ -64,6 +64,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -100,8 +101,7 @@ linkTitle: ZADD since: 1.2.0 summary: Adds one or more members to a sorted set, or updates their scores. Creates the key if it doesn't exist. -syntax_fmt: "ZADD key [NX | XX] [GT | LT] [CH] [INCR] score member [score member -\ +syntax_fmt: "ZADD key [NX | XX] [GT | LT] [CH] [INCR] score member [score member\n\ \ ...]" syntax_str: '[NX | XX] [GT | LT] [CH] [INCR] score member [score member ...]' title: ZADD diff --git a/content/commands/zcard.md b/content/commands/zcard.md index eb7f784a2f..55843b27b8 100644 --- a/content/commands/zcard.md +++ b/content/commands/zcard.md @@ -16,6 +16,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/zcount.md b/content/commands/zcount.md index b0b4cc1bce..188545ef8e 100644 --- a/content/commands/zcount.md +++ b/content/commands/zcount.md @@ -22,6 +22,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/zdiff.md b/content/commands/zdiff.md index 518623cdaa..0c40d0b3ac 100644 --- a/content/commands/zdiff.md +++ b/content/commands/zdiff.md @@ -25,6 +25,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/zdiffstore.md b/content/commands/zdiffstore.md index 48d1448440..6757f652b8 100644 --- a/content/commands/zdiffstore.md +++ b/content/commands/zdiffstore.md @@ -24,6 +24,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/zincrby.md b/content/commands/zincrby.md index 5a3dfd207b..2e8af0ea55 100644 --- a/content/commands/zincrby.md +++ b/content/commands/zincrby.md @@ -22,6 +22,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/zinter.md b/content/commands/zinter.md index 147f5c530e..98c5c813fe 100644 --- a/content/commands/zinter.md +++ b/content/commands/zinter.md @@ -48,6 +48,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -75,8 +76,7 @@ key_specs: linkTitle: ZINTER since: 6.2.0 summary: Returns the intersect of multiple sorted sets. -syntax_fmt: "ZINTER numkeys key [key ...] [WEIGHTS\_weight [weight ...]] - [AGGREGATE\_\ +syntax_fmt: "ZINTER numkeys key [key ...] [WEIGHTS\_weight [weight ...]]\n [AGGREGATE\_\ ] [WITHSCORES]" syntax_str: "key [key ...] [WEIGHTS\_weight [weight ...]] [AGGREGATE\_] [WITHSCORES]" diff --git a/content/commands/zintercard.md b/content/commands/zintercard.md index 7470e39a4a..40f5ef2731 100644 --- a/content/commands/zintercard.md +++ b/content/commands/zintercard.md @@ -25,6 +25,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/zinterstore.md b/content/commands/zinterstore.md index 79e76f1449..b569a7dd87 100644 --- a/content/commands/zinterstore.md +++ b/content/commands/zinterstore.md @@ -47,6 +47,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -87,8 +88,7 @@ key_specs: linkTitle: ZINTERSTORE since: 2.0.0 summary: Stores the intersect of multiple sorted sets in a key. -syntax_fmt: "ZINTERSTORE destination numkeys key [key ...] [WEIGHTS\_weight - [weight\ +syntax_fmt: "ZINTERSTORE destination numkeys key [key ...] [WEIGHTS\_weight\n [weight\ \ ...]] [AGGREGATE\_]" syntax_str: "numkeys key [key ...] [WEIGHTS\_weight [weight ...]] [AGGREGATE\_]" diff --git a/content/commands/zlexcount.md b/content/commands/zlexcount.md index bcb047d736..39d5ec018e 100644 --- a/content/commands/zlexcount.md +++ b/content/commands/zlexcount.md @@ -22,6 +22,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/zmpop.md b/content/commands/zmpop.md index 8d48983a55..0fc2e6b872 100644 --- a/content/commands/zmpop.md +++ b/content/commands/zmpop.md @@ -36,6 +36,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/zmscore.md b/content/commands/zmscore.md index 507ed32126..dd0252e1ac 100644 --- a/content/commands/zmscore.md +++ b/content/commands/zmscore.md @@ -20,6 +20,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/zpopmax.md b/content/commands/zpopmax.md index a99eb26f15..b0794e3bb3 100644 --- a/content/commands/zpopmax.md +++ b/content/commands/zpopmax.md @@ -20,6 +20,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/zpopmin.md b/content/commands/zpopmin.md index 7dba0b7273..ff04c2f35c 100644 --- a/content/commands/zpopmin.md +++ b/content/commands/zpopmin.md @@ -20,6 +20,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/zrandmember.md b/content/commands/zrandmember.md index 658dc86d4a..d05ff393a3 100644 --- a/content/commands/zrandmember.md +++ b/content/commands/zrandmember.md @@ -28,6 +28,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/zrange.md b/content/commands/zrange.md index 8a9ac41dce..404a1fef1d 100644 --- a/content/commands/zrange.md +++ b/content/commands/zrange.md @@ -58,6 +58,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -86,8 +87,7 @@ key_specs: linkTitle: ZRANGE since: 1.2.0 summary: Returns members in a sorted set within a range of indexes. -syntax_fmt: "ZRANGE key start stop [BYSCORE | BYLEX] [REV] [LIMIT\_offset count] -\ +syntax_fmt: "ZRANGE key start stop [BYSCORE | BYLEX] [REV] [LIMIT\_offset count]\n\ \ [WITHSCORES]" syntax_str: "start stop [BYSCORE | BYLEX] [REV] [LIMIT\_offset count] [WITHSCORES]" title: ZRANGE diff --git a/content/commands/zrangebylex.md b/content/commands/zrangebylex.md index 37cb18b07f..171927d68c 100644 --- a/content/commands/zrangebylex.md +++ b/content/commands/zrangebylex.md @@ -33,6 +33,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/zrangebyscore.md b/content/commands/zrangebyscore.md index 3d629e6779..8763436bc4 100644 --- a/content/commands/zrangebyscore.md +++ b/content/commands/zrangebyscore.md @@ -39,6 +39,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/zrangestore.md b/content/commands/zrangestore.md index 589b8414b8..c2f84d5b54 100644 --- a/content/commands/zrangestore.md +++ b/content/commands/zrangestore.md @@ -54,6 +54,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -92,8 +93,7 @@ key_specs: linkTitle: ZRANGESTORE since: 6.2.0 summary: Stores a range of members from sorted set in a key. -syntax_fmt: "ZRANGESTORE dst src min max [BYSCORE | BYLEX] [REV] [LIMIT\_offset -\ +syntax_fmt: "ZRANGESTORE dst src min max [BYSCORE | BYLEX] [REV] [LIMIT\_offset\n\ \ count]" syntax_str: "src min max [BYSCORE | BYLEX] [REV] [LIMIT\_offset count]" title: ZRANGESTORE diff --git a/content/commands/zrank.md b/content/commands/zrank.md index 0589daef3c..3bc3ed241f 100644 --- a/content/commands/zrank.md +++ b/content/commands/zrank.md @@ -24,6 +24,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/zrem.md b/content/commands/zrem.md index 96ccf9201d..87b6d572e5 100644 --- a/content/commands/zrem.md +++ b/content/commands/zrem.md @@ -20,6 +20,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/zremrangebylex.md b/content/commands/zremrangebylex.md index 21860d68b9..f0e772e53d 100644 --- a/content/commands/zremrangebylex.md +++ b/content/commands/zremrangebylex.md @@ -22,6 +22,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/zremrangebyrank.md b/content/commands/zremrangebyrank.md index 4e07759187..bf4a441985 100644 --- a/content/commands/zremrangebyrank.md +++ b/content/commands/zremrangebyrank.md @@ -22,6 +22,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/zremrangebyscore.md b/content/commands/zremrangebyscore.md index 90eb98398d..def557d76a 100644 --- a/content/commands/zremrangebyscore.md +++ b/content/commands/zremrangebyscore.md @@ -22,6 +22,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/zrevrange.md b/content/commands/zrevrange.md index 3507842f75..b1c30cc3d5 100644 --- a/content/commands/zrevrange.md +++ b/content/commands/zrevrange.md @@ -27,6 +27,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/zrevrangebylex.md b/content/commands/zrevrangebylex.md index c516869769..65aa6eda2a 100644 --- a/content/commands/zrevrangebylex.md +++ b/content/commands/zrevrangebylex.md @@ -33,6 +33,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/zrevrangebyscore.md b/content/commands/zrevrangebyscore.md index f03b8a532c..065ba5440c 100644 --- a/content/commands/zrevrangebyscore.md +++ b/content/commands/zrevrangebyscore.md @@ -38,6 +38,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/zrevrank.md b/content/commands/zrevrank.md index b0b5f047b9..41631ec7be 100644 --- a/content/commands/zrevrank.md +++ b/content/commands/zrevrank.md @@ -24,6 +24,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/zscan.md b/content/commands/zscan.md index fb9293e5d9..349c1bd1d8 100644 --- a/content/commands/zscan.md +++ b/content/commands/zscan.md @@ -29,6 +29,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/zscore.md b/content/commands/zscore.md index 5733d8d3ca..c7ec04c930 100644 --- a/content/commands/zscore.md +++ b/content/commands/zscore.md @@ -19,6 +19,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: diff --git a/content/commands/zunion.md b/content/commands/zunion.md index 0c787e731f..1b71be1e8c 100644 --- a/content/commands/zunion.md +++ b/content/commands/zunion.md @@ -48,6 +48,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -74,8 +75,7 @@ key_specs: linkTitle: ZUNION since: 6.2.0 summary: Returns the union of multiple sorted sets. -syntax_fmt: "ZUNION numkeys key [key ...] [WEIGHTS\_weight [weight ...]] - [AGGREGATE\_\ +syntax_fmt: "ZUNION numkeys key [key ...] [WEIGHTS\_weight [weight ...]]\n [AGGREGATE\_\ ] [WITHSCORES]" syntax_str: "key [key ...] [WEIGHTS\_weight [weight ...]] [AGGREGATE\_] [WITHSCORES]" diff --git a/content/commands/zunionstore.md b/content/commands/zunionstore.md index 8de6a51802..66cef5e465 100644 --- a/content/commands/zunionstore.md +++ b/content/commands/zunionstore.md @@ -47,6 +47,7 @@ categories: - oss - rs - rc +- oss - kubernetes - clients command_flags: @@ -86,8 +87,7 @@ key_specs: linkTitle: ZUNIONSTORE since: 2.0.0 summary: Stores the union of multiple sorted sets in a key. -syntax_fmt: "ZUNIONSTORE destination numkeys key [key ...] [WEIGHTS\_weight - [weight\ +syntax_fmt: "ZUNIONSTORE destination numkeys key [key ...] [WEIGHTS\_weight\n [weight\ \ ...]] [AGGREGATE\_]" syntax_str: "numkeys key [key ...] [WEIGHTS\_weight [weight ...]] [AGGREGATE\_]"