From 9180252b95add13869a2269a992bfa95542decca Mon Sep 17 00:00:00 2001 From: Andy Stark Date: Fri, 21 Nov 2025 16:08:46 +0000 Subject: [PATCH 1/7] DOC-5993 enable metadata in render hooks --- layouts/_default/section.md | 5 ++++- layouts/_default/single.md | 5 ++++- layouts/partials/ai-metadata-body.html | 9 +++++++++ layouts/partials/ai-metadata.html | 9 +++++++++ 4 files changed, 26 insertions(+), 2 deletions(-) diff --git a/layouts/_default/section.md b/layouts/_default/section.md index a09cb10aeb..88771a4f81 100644 --- a/layouts/_default/section.md +++ b/layouts/_default/section.md @@ -13,7 +13,10 @@ "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 }} + "key_specs": {{ .Params.key_specs | jsonify }}{{ end }}{{ if .Params.topics }}, + "topics": {{ .Params.topics | jsonify }}{{ end }}{{ if .Params.relatedPages }}, + "relatedPages": {{ .Params.relatedPages | jsonify }}{{ end }}{{ if .Params.scope }}, + "scope": {{ .Params.scope | jsonify }}{{ end }} } ``` diff --git a/layouts/_default/single.md b/layouts/_default/single.md index a09cb10aeb..88771a4f81 100644 --- a/layouts/_default/single.md +++ b/layouts/_default/single.md @@ -13,7 +13,10 @@ "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 }} + "key_specs": {{ .Params.key_specs | jsonify }}{{ end }}{{ if .Params.topics }}, + "topics": {{ .Params.topics | jsonify }}{{ end }}{{ if .Params.relatedPages }}, + "relatedPages": {{ .Params.relatedPages | jsonify }}{{ end }}{{ if .Params.scope }}, + "scope": {{ .Params.scope | jsonify }}{{ end }} } ``` diff --git a/layouts/partials/ai-metadata-body.html b/layouts/partials/ai-metadata-body.html index c3f292adee..f2e9f925eb 100644 --- a/layouts/partials/ai-metadata-body.html +++ b/layouts/partials/ai-metadata-body.html @@ -27,6 +27,15 @@ {{- if .Params.key_specs -}} {{- $metadata = merge $metadata (dict "key_specs" .Params.key_specs) -}} {{- end -}} +{{- if .Params.topics -}} + {{- $metadata = merge $metadata (dict "topics" .Params.topics) -}} +{{- end -}} +{{- if .Params.relatedPages -}} + {{- $metadata = merge $metadata (dict "relatedPages" .Params.relatedPages) -}} +{{- end -}} +{{- if .Params.scope -}} + {{- $metadata = merge $metadata (dict "scope" .Params.scope) -}} +{{- end -}} {{- $json := $metadata | jsonify -}} {{- printf `` $json | safeHTML -}} diff --git a/layouts/partials/ai-metadata.html b/layouts/partials/ai-metadata.html index d184e59f7a..2d2c8a1e54 100644 --- a/layouts/partials/ai-metadata.html +++ b/layouts/partials/ai-metadata.html @@ -27,6 +27,15 @@ {{- if .Params.key_specs -}} {{- $metadata = merge $metadata (dict "key_specs" .Params.key_specs) -}} {{- end -}} +{{- if .Params.topics -}} + {{- $metadata = merge $metadata (dict "topics" .Params.topics) -}} +{{- end -}} +{{- if .Params.relatedPages -}} + {{- $metadata = merge $metadata (dict "relatedPages" .Params.relatedPages) -}} +{{- end -}} +{{- if .Params.scope -}} + {{- $metadata = merge $metadata (dict "scope" .Params.scope) -}} +{{- end -}} {{- $json := $metadata | jsonify -}} {{- printf `` $json | safeHTML -}} From cea30d553a0620717ed99a97397bf9523cde3739 Mon Sep 17 00:00:00 2001 From: Andy Stark Date: Fri, 21 Nov 2025 16:16:47 +0000 Subject: [PATCH 2/7] DOC-5993 added some example metadata --- content/develop/clients/client-side-caching.md | 8 ++++++++ content/develop/clients/sch.md | 9 +++++++++ 2 files changed, 17 insertions(+) diff --git a/content/develop/clients/client-side-caching.md b/content/develop/clients/client-side-caching.md index c83bd208c2..5984870f7d 100644 --- a/content/develop/clients/client-side-caching.md +++ b/content/develop/clients/client-side-caching.md @@ -13,6 +13,14 @@ categories: description: Server-assisted, client-side caching in Redis linkTitle: Client-side caching title: Client-side caching introduction +scope: overview +relatedPages: +- /develop/clients/redis-py/connect#connect-using-client-side-caching +- /develop/clients/nodejs/connect#connect-using-client-side-caching +- /develop/clients/jedis/connect#connect-using-client-side-caching +topics: +- client-side-caching +- performance weight: 30 --- diff --git a/content/develop/clients/sch.md b/content/develop/clients/sch.md index 68b21bba77..c2b4f095ff 100644 --- a/content/develop/clients/sch.md +++ b/content/develop/clients/sch.md @@ -12,6 +12,15 @@ categories: description: Learn how to avoid disruptions during Redis server maintenance. linkTitle: Smart client handoffs title: Smart client handoffs +scope: overview +relatedPages: +- /develop/clients/redis-py/connect#connect-using-smart-client-handoffs-sch +- /develop/clients/nodejs/connect#connect-using-smart-client-handoffs-sch +- /develop/clients/lettuce/connect#connect-using-smart-client-handoffs-sch +- /develop/clients/go/connect#connect-using-smart-client-handoffs-sch +topics: +- smart-client-handoffs +- resilience weight: 50 --- From 9d0d17e6a3aa2b06653d92843d7fb04d4ea911c2 Mon Sep 17 00:00:00 2001 From: Andy Stark Date: Mon, 24 Nov 2025 10:46:01 +0000 Subject: [PATCH 3/7] DOC-5933 added metadata for error handling pages --- content/develop/clients/dotnet/error-handling.md | 7 +++++++ content/develop/clients/error-handling.md | 10 ++++++++++ content/develop/clients/go/error-handling.md | 7 +++++++ content/develop/clients/jedis/error-handling.md | 7 +++++++ content/develop/clients/nodejs/error-handling.md | 7 +++++++ content/develop/clients/redis-py/error-handling.md | 7 +++++++ 6 files changed, 45 insertions(+) diff --git a/content/develop/clients/dotnet/error-handling.md b/content/develop/clients/dotnet/error-handling.md index 965a97f477..cc8958e8eb 100644 --- a/content/develop/clients/dotnet/error-handling.md +++ b/content/develop/clients/dotnet/error-handling.md @@ -2,6 +2,13 @@ title: Error handling description: Learn how to handle errors when using NRedisStack. linkTitle: Error handling +scope: implementation +relatedPages: +- /develop/clients/error-handling +- /develop/clients/dotnet/produsage +topics: +- error-handling +- resilience weight: 60 --- diff --git a/content/develop/clients/error-handling.md b/content/develop/clients/error-handling.md index 1a81fb0d2f..a78141a57b 100644 --- a/content/develop/clients/error-handling.md +++ b/content/develop/clients/error-handling.md @@ -2,6 +2,16 @@ title: Error handling description: Learn how to handle errors when using Redis client libraries. linkTitle: Error handling +scope: overview +relatedPages: +- /develop/clients/redis-py/error-handling +- /develop/clients/dotnet/error-handling +- /develop/clients/nodejs/error-handling +- /develop/clients/jedis/error-handling +- /develop/clients/go/error-handling +topics: +- error-handling +- resilience weight: 50 --- diff --git a/content/develop/clients/go/error-handling.md b/content/develop/clients/go/error-handling.md index 984becd2a8..a6b7498e25 100644 --- a/content/develop/clients/go/error-handling.md +++ b/content/develop/clients/go/error-handling.md @@ -2,6 +2,13 @@ title: Error handling description: Learn how to handle errors when using go-redis linkTitle: Error handling +scope: implementation +relatedPages: +- /develop/clients/error-handling +- /develop/clients/go/produsage +topics: +- error-handling +- resilience weight: 50 --- diff --git a/content/develop/clients/jedis/error-handling.md b/content/develop/clients/jedis/error-handling.md index 5a25870496..ef1e3fbc5b 100644 --- a/content/develop/clients/jedis/error-handling.md +++ b/content/develop/clients/jedis/error-handling.md @@ -2,6 +2,13 @@ title: Error handling description: Learn how to handle errors when using Jedis. linkTitle: Error handling +scope: implementation +relatedPages: +- /develop/clients/error-handling +- /develop/clients/jedis/produsage +topics: +- error-handling +- resilience weight: 50 --- diff --git a/content/develop/clients/nodejs/error-handling.md b/content/develop/clients/nodejs/error-handling.md index 0ed52b4fbf..dbd47004d3 100644 --- a/content/develop/clients/nodejs/error-handling.md +++ b/content/develop/clients/nodejs/error-handling.md @@ -2,6 +2,13 @@ title: Error handling description: Learn how to handle errors when using node-redis. linkTitle: Error handling +scope: implementation +relatedPages: +- /develop/clients/error-handling +- /develop/clients/nodejs/produsage +topics: +- error-handling +- resilience weight: 6 --- diff --git a/content/develop/clients/redis-py/error-handling.md b/content/develop/clients/redis-py/error-handling.md index 14bd34b61f..857c097464 100644 --- a/content/develop/clients/redis-py/error-handling.md +++ b/content/develop/clients/redis-py/error-handling.md @@ -2,6 +2,13 @@ title: Error handling description: Learn how to handle errors when using redis-py linkTitle: Error handling +scope: implementation +relatedPages: +- /develop/clients/error-handling +- /develop/clients/redis-py/produsage +topics: +- error-handling +- resilience weight: 65 --- From 4a13ed8f29384305f68d4e2483b1db0d963ea30f Mon Sep 17 00:00:00 2001 From: Andy Stark Date: Mon, 24 Nov 2025 11:19:39 +0000 Subject: [PATCH 4/7] DOC-5993 added metadata for index/query example pages --- content/develop/clients/dotnet/queryjson.md | 8 ++++++++ content/develop/clients/go/queryjson.md | 8 ++++++++ content/develop/clients/jedis/queryjson.md | 8 ++++++++ content/develop/clients/php/queryjson.md | 8 ++++++++ 4 files changed, 32 insertions(+) diff --git a/content/develop/clients/dotnet/queryjson.md b/content/develop/clients/dotnet/queryjson.md index 865b09440f..9986410ba1 100644 --- a/content/develop/clients/dotnet/queryjson.md +++ b/content/develop/clients/dotnet/queryjson.md @@ -12,6 +12,14 @@ categories: description: Learn how to use the Redis query engine with JSON and hash documents. linkTitle: Index and query documents title: Index and query documents +scope: example +relatedPages: +- /develop/clients/dotnet/vecsearch +- /develop/ai/search-and-query +topics: +- Redis Query Engine +- JSON +- hash weight: 30 --- diff --git a/content/develop/clients/go/queryjson.md b/content/develop/clients/go/queryjson.md index 282ed862a0..efdf38dec6 100644 --- a/content/develop/clients/go/queryjson.md +++ b/content/develop/clients/go/queryjson.md @@ -12,6 +12,14 @@ categories: description: Learn how to use the Redis query engine with JSON and hash documents. linkTitle: Index and query documents title: Index and query documents +scope: example +relatedPages: +- /develop/clients/go/vecsearch +- /develop/ai/search-and-query +topics: +- Redis Query Engine +- JSON +- hash weight: 20 --- diff --git a/content/develop/clients/jedis/queryjson.md b/content/develop/clients/jedis/queryjson.md index 0e52a17d9f..b2aef5ce4c 100644 --- a/content/develop/clients/jedis/queryjson.md +++ b/content/develop/clients/jedis/queryjson.md @@ -12,6 +12,14 @@ categories: description: Learn how to use the Redis query engine with JSON and hash documents. linkTitle: Index and query documents title: Index and query documents +scope: example +relatedPages: +- /develop/clients/jedis/vecsearch +- /develop/ai/search-and-query +topics: +- Redis Query Engine +- JSON +- hash weight: 2 --- diff --git a/content/develop/clients/php/queryjson.md b/content/develop/clients/php/queryjson.md index 78cee79731..0ccaca646c 100644 --- a/content/develop/clients/php/queryjson.md +++ b/content/develop/clients/php/queryjson.md @@ -12,6 +12,14 @@ categories: description: Learn how to use the Redis query engine with JSON and hash documents. linkTitle: Index and query documents title: Index and query documents +scope: example +relatedPages: +- /develop/clients/php/vecsearch +- /develop/ai/search-and-query +topics: +- Redis Query Engine +- JSON +- hash weight: 20 --- From df98b44239130f6616d34d562480aae4b7632057 Mon Sep 17 00:00:00 2001 From: Andy Stark Date: Mon, 24 Nov 2025 11:25:33 +0000 Subject: [PATCH 5/7] DOC-5993 added metadata for vector query and vector set pages --- content/develop/clients/dotnet/vecsearch.md | 10 ++++++++++ content/develop/clients/dotnet/vecsets.md | 6 ++++++ content/develop/clients/lettuce/vecsearch.md | 10 ++++++++++ content/develop/clients/lettuce/vecsets.md | 6 ++++++ content/develop/clients/nodejs/vecsets.md | 6 ++++++ content/develop/clients/php/vecsearch.md | 9 +++++++++ content/develop/clients/redis-py/vecsearch.md | 10 ++++++++++ 7 files changed, 57 insertions(+) diff --git a/content/develop/clients/dotnet/vecsearch.md b/content/develop/clients/dotnet/vecsearch.md index 5762c18996..23f81e186f 100644 --- a/content/develop/clients/dotnet/vecsearch.md +++ b/content/develop/clients/dotnet/vecsearch.md @@ -12,6 +12,16 @@ categories: description: Learn how to index and query vector embeddings with Redis linkTitle: Index and query vectors title: Index and query vectors +scope: example +relatedPages: +- /develop/clients/dotnet/queryjson +- /develop/clients/dotnet/vecsets +- /develop/ai/search-and-query +topics: +- Redis Query Engine +- JSON +- hash +- vectors weight: 40 --- diff --git a/content/develop/clients/dotnet/vecsets.md b/content/develop/clients/dotnet/vecsets.md index 8bde2d8d99..99a1226eda 100644 --- a/content/develop/clients/dotnet/vecsets.md +++ b/content/develop/clients/dotnet/vecsets.md @@ -14,6 +14,12 @@ linkTitle: Vector set embeddings title: Vector set embeddings weight: 40 bannerText: Vector set is a new data type that is currently in preview and may be subject to change. +scope: example +relatedPages: +- /develop/clients/dotnet/vecsearch +topics: +- vector sets +- vectors bannerChildren: true --- diff --git a/content/develop/clients/lettuce/vecsearch.md b/content/develop/clients/lettuce/vecsearch.md index 173697a106..d103ac78b7 100644 --- a/content/develop/clients/lettuce/vecsearch.md +++ b/content/develop/clients/lettuce/vecsearch.md @@ -12,6 +12,16 @@ categories: description: Learn how to index and query vector embeddings with Redis linkTitle: Index and query vectors title: Index and query vectors +scope: example +relatedPages: +- /develop/clients/lettuce/queryjson +- /develop/clients/lettuce/vecsets +- /develop/ai/search-and-query +topics: +- Redis Query Engine +- JSON +- hash +- vectors weight: 3 --- diff --git a/content/develop/clients/lettuce/vecsets.md b/content/develop/clients/lettuce/vecsets.md index 808b030cc3..5ee7d5e342 100644 --- a/content/develop/clients/lettuce/vecsets.md +++ b/content/develop/clients/lettuce/vecsets.md @@ -14,6 +14,12 @@ linkTitle: Vector set embeddings title: Vector set embeddings weight: 40 bannerText: Vector set is a new data type that is currently in preview and may be subject to change. +scope: example +relatedPages: +- /develop/clients/lettuce/vecsearch +topics: +- vector sets +- vectors bannerChildren: true --- diff --git a/content/develop/clients/nodejs/vecsets.md b/content/develop/clients/nodejs/vecsets.md index fba81c6d34..b70d142ad8 100644 --- a/content/develop/clients/nodejs/vecsets.md +++ b/content/develop/clients/nodejs/vecsets.md @@ -14,6 +14,12 @@ linkTitle: Vector set embeddings title: Vector set embeddings weight: 4 bannerText: Vector set is a new data type that is currently in preview and may be subject to change. +scope: example +relatedPages: +- /develop/clients/nodejs/vecsearch +topics: +- vector sets +- vectors bannerChildren: true --- diff --git a/content/develop/clients/php/vecsearch.md b/content/develop/clients/php/vecsearch.md index 57d027510e..5d1c926b63 100644 --- a/content/develop/clients/php/vecsearch.md +++ b/content/develop/clients/php/vecsearch.md @@ -12,6 +12,15 @@ categories: description: Learn how to index and query vector embeddings with Redis linkTitle: Index and query vectors title: Index and query vectors +scope: example +relatedPages: +- /develop/clients/php/queryjson +- /develop/ai/search-and-query +topics: +- Redis Query Engine +- JSON +- hash +- vectors weight: 30 --- diff --git a/content/develop/clients/redis-py/vecsearch.md b/content/develop/clients/redis-py/vecsearch.md index d31ef7af3d..19b071d21c 100644 --- a/content/develop/clients/redis-py/vecsearch.md +++ b/content/develop/clients/redis-py/vecsearch.md @@ -12,6 +12,16 @@ categories: description: Learn how to index and query vector embeddings with Redis linkTitle: Index and query vectors title: Index and query vectors +scope: example +relatedPages: +- /develop/clients/redis-py/queryjson +- /develop/clients/redis-py/vecsets +- /develop/ai/search-and-query +topics: +- Redis Query Engine +- JSON +- hash +- vectors weight: 40 --- From 8e227d9b92d4c7097325d07eaa1547915232bcbe Mon Sep 17 00:00:00 2001 From: Andy Stark Date: Mon, 24 Nov 2025 13:30:53 +0000 Subject: [PATCH 6/7] DOC-5993 added missing python vector sets metadata --- content/develop/clients/redis-py/vecsets.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/content/develop/clients/redis-py/vecsets.md b/content/develop/clients/redis-py/vecsets.md index 544215acdf..235c655bad 100644 --- a/content/develop/clients/redis-py/vecsets.md +++ b/content/develop/clients/redis-py/vecsets.md @@ -14,6 +14,12 @@ linkTitle: Vector set embeddings title: Vector set embeddings weight: 40 bannerText: Vector set is a new data type that is currently in preview and may be subject to change. +scope: example +relatedPages: +- /develop/clients/redis-py/vecsearch +topics: +- vector sets +- vectors bannerChildren: true --- From b60ce1c24036f888d7e8320efa9ab9ba484a11c8 Mon Sep 17 00:00:00 2001 From: Andy Stark Date: Tue, 25 Nov 2025 11:20:55 +0000 Subject: [PATCH 7/7] DOC-5993 metadata for a few more pages --- content/develop/clients/go/vecsearch.md | 10 ++++++++++ content/develop/clients/go/vecsets.md | 6 ++++++ content/develop/clients/jedis/vecsearch.md | 10 ++++++++++ content/develop/clients/jedis/vecsets.md | 6 ++++++ content/develop/clients/lettuce/queryjson.md | 8 ++++++++ content/develop/clients/nodejs/queryjson.md | 8 ++++++++ content/develop/clients/nodejs/vecsearch.md | 10 ++++++++++ content/develop/clients/redis-py/queryjson.md | 8 ++++++++ 8 files changed, 66 insertions(+) diff --git a/content/develop/clients/go/vecsearch.md b/content/develop/clients/go/vecsearch.md index 1258ec9b15..9dc75709ca 100644 --- a/content/develop/clients/go/vecsearch.md +++ b/content/develop/clients/go/vecsearch.md @@ -12,6 +12,16 @@ categories: description: Learn how to index and query vector embeddings with Redis linkTitle: Index and query vectors title: Index and query vectors +scope: example +relatedPages: +- /develop/clients/go/queryjson +- /develop/clients/go/vecsets +- /develop/ai/search-and-query +topics: +- Redis Query Engine +- JSON +- hash +- vectors weight: 30 --- diff --git a/content/develop/clients/go/vecsets.md b/content/develop/clients/go/vecsets.md index 943ef555a9..1e76cac800 100644 --- a/content/develop/clients/go/vecsets.md +++ b/content/develop/clients/go/vecsets.md @@ -14,6 +14,12 @@ linkTitle: Vector set embeddings title: Vector set embeddings weight: 35 bannerText: Vector set is a new data type that is currently in preview and may be subject to change. +scope: example +relatedPages: +- /develop/clients/go/vecsearch +topics: +- vector sets +- vectors bannerChildren: true --- diff --git a/content/develop/clients/jedis/vecsearch.md b/content/develop/clients/jedis/vecsearch.md index f7b26892c4..aead0bc3d7 100644 --- a/content/develop/clients/jedis/vecsearch.md +++ b/content/develop/clients/jedis/vecsearch.md @@ -12,6 +12,16 @@ categories: description: Learn how to index and query vector embeddings with Redis linkTitle: Index and query vectors title: Index and query vectors +scope: example +relatedPages: +- /develop/clients/jedis/queryjson +- /develop/clients/jedis/vecsets +- /develop/ai/search-and-query +topics: +- Redis Query Engine +- JSON +- hash +- vectors weight: 3 --- diff --git a/content/develop/clients/jedis/vecsets.md b/content/develop/clients/jedis/vecsets.md index 31ee385345..08f91d8ca7 100644 --- a/content/develop/clients/jedis/vecsets.md +++ b/content/develop/clients/jedis/vecsets.md @@ -14,6 +14,12 @@ linkTitle: Vector set embeddings title: Vector set embeddings weight: 4 bannerText: Vector set is a new data type that is currently in preview and may be subject to change. +scope: example +relatedPages: +- /develop/clients/jedis/vecsearch +topics: +- vector sets +- vectors bannerChildren: true --- diff --git a/content/develop/clients/lettuce/queryjson.md b/content/develop/clients/lettuce/queryjson.md index b6095c4b26..09c13d3aa7 100644 --- a/content/develop/clients/lettuce/queryjson.md +++ b/content/develop/clients/lettuce/queryjson.md @@ -12,6 +12,14 @@ categories: description: Learn how to use the Redis query engine with JSON and hash documents. linkTitle: Index and query documents title: Index and query documents +scope: example +relatedPages: +- /develop/clients/lettuce/vecsearch +- /develop/ai/search-and-query +topics: +- Redis Query Engine +- JSON +- hash weight: 2 --- diff --git a/content/develop/clients/nodejs/queryjson.md b/content/develop/clients/nodejs/queryjson.md index b7c0b1b456..e24da5e0f4 100644 --- a/content/develop/clients/nodejs/queryjson.md +++ b/content/develop/clients/nodejs/queryjson.md @@ -12,6 +12,14 @@ categories: description: Learn how to use the Redis Query Engine with JSON and hash documents. linkTitle: Index and query documents title: Index and query documents +scope: example +relatedPages: +- /develop/clients/nodejs/vecsearch +- /develop/ai/search-and-query +topics: +- Redis Query Engine +- JSON +- hash weight: 2 --- diff --git a/content/develop/clients/nodejs/vecsearch.md b/content/develop/clients/nodejs/vecsearch.md index 12dc5d3a64..92312c3efa 100644 --- a/content/develop/clients/nodejs/vecsearch.md +++ b/content/develop/clients/nodejs/vecsearch.md @@ -12,6 +12,16 @@ categories: description: Learn how to index and query vector embeddings with Redis linkTitle: Index and query vectors title: Index and query vectors +scope: example +relatedPages: +- /develop/clients/nodejs/queryjson +- /develop/clients/nodejs/vecsets +- /develop/ai/search-and-query +topics: +- Redis Query Engine +- JSON +- hash +- vectors weight: 3 --- diff --git a/content/develop/clients/redis-py/queryjson.md b/content/develop/clients/redis-py/queryjson.md index d217d97028..60808a578b 100644 --- a/content/develop/clients/redis-py/queryjson.md +++ b/content/develop/clients/redis-py/queryjson.md @@ -12,6 +12,14 @@ categories: description: Learn how to use the Redis query engine with JSON and hash documents. linkTitle: Index and query documents title: Index and query documents +scope: example +relatedPages: +- /develop/clients/redis-py/vecsearch +- /develop/ai/search-and-query +topics: +- Redis Query Engine +- JSON +- hash weight: 30 ---