Skip to content

Commit 442df0c

Browse files
committed
Merge branch 'main' into DOC-5405
2 parents 215e93e + a68a5d6 commit 442df0c

File tree

212 files changed

+2230
-826
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

212 files changed

+2230
-826
lines changed

assets/css/index.css

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,28 @@ section.prose {
2323
@apply font-geist
2424
}
2525

26-
.prose h1,
27-
.prose h3,
28-
.prose h4,
29-
.prose h5,
30-
.prose h6 {
31-
@apply font-normal;
26+
.prose h1 {
27+
@apply text-4xl font-normal break-words;
3228
}
3329

3430
.prose h2 {
35-
@apply text-lg font-medium pb-3 border-b border-b-redis-pen-700 border-opacity-50;
31+
@apply text-2xl font-medium pb-3 border-b border-b-redis-pen-700 border-opacity-50;
32+
}
33+
34+
.prose h3 {
35+
@apply text-xl font-semibold;
36+
}
37+
38+
.prose h4 {
39+
@apply text-lg font-medium;
40+
}
41+
42+
.prose h5 {
43+
@apply text-base font-medium;
44+
}
45+
46+
.prose h6 {
47+
@apply text-sm font-medium;
3648
}
3749

3850
.prose p, .prose ol, .prose ul {
@@ -47,10 +59,6 @@ section.prose {
4759
@apply bg-none font-monogeist;
4860
}
4961

50-
.prose h1 {
51-
@apply text-4xl break-words;
52-
}
53-
5462
.prose h1[id],
5563
.prose h2[id],
5664
.prose h3[id],

config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ rdi_redis_gears_version = "1.2.6"
5555
rdi_debezium_server_version = "2.3.0.Final"
5656
rdi_db_types = "cassandra|mysql|oracle|postgresql|sqlserver"
5757
rdi_cli_latest = "latest"
58-
rdi_current_version = "1.12.1"
58+
rdi_current_version = "1.12.2"
5959

6060
[params.clientsConfig]
6161
"Python"={quickstartSlug="redis-py"}

content/commands/ft.aggregate.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ groups the results in the pipeline based on one or more properties. Each group s
260260

261261
reduces the matching results in each group into a single record, using a reduction function. For example, `COUNT` counts the number of records in the group. The reducers can have their own property names using the `AS {name}` optional argument. If a name is not given, the resulting name will be the name of the reduce function and the group properties. For example, if a name is not given to `COUNT_DISTINCT` by property `@foo`, the resulting name will be `count_distinct(@foo)`.
262262

263-
See [Supported GROUPBY reducers]({{< relref "develop/interact/search-and-query/advanced-concepts/aggregations#supported-groupby-reducers" >}}) for more details.
263+
See [Supported GROUPBY reducers]({{< relref "develop/ai/search-and-query/advanced-concepts/aggregations#supported-groupby-reducers" >}}) for more details.
264264
</details>
265265

266266
<details open>
@@ -292,7 +292,7 @@ applies a 1-to-1 transformation on one or more properties and either stores the
292292
`expr` is an expression that can be used to perform arithmetic operations on numeric properties, or functions that can be applied on properties depending on their types (see below), or any combination thereof. For example, `APPLY "sqrt(@foo)/log(@bar) + 5" AS baz` evaluates this expression dynamically for each record in the pipeline and store the result as a new property called `baz`, which can be referenced by further `APPLY`/`SORTBY`/`GROUPBY`/`REDUCE` operations down the
293293
pipeline.
294294

295-
See [APPLY expressions]({{< relref "develop/interact/search-and-query/advanced-concepts/aggregations/#apply-expressions" >}}) for details.
295+
See [APPLY expressions]({{< relref "develop/ai/search-and-query/advanced-concepts/aggregations/#apply-expressions" >}}) for details.
296296
</details>
297297

298298
<details open>
@@ -316,7 +316,7 @@ filters the results using predicate expressions relating to values in each resul
316316
<summary><code>WITHCURSOR {COUNT} {read_size} [MAXIDLE {idle_time}]</code></summary>
317317

318318
Scan part of the results with a quicker alternative than `LIMIT`.
319-
See [Cursor API]({{< relref "develop/interact/search-and-query/advanced-concepts/aggregations#cursor-api" >}}) for more details.
319+
See [Cursor API]({{< relref "develop/ai/search-and-query/advanced-concepts/aggregations#cursor-api" >}}) for more details.
320320
</details>
321321

322322
<details open>
@@ -336,7 +336,7 @@ You can reference parameters in the `query` by a `$`, followed by the parameter
336336
<details open>
337337
<summary><code>SCORER {scorer}</code></summary>
338338

339-
uses a [built-in]({{< relref "/develop/interact/search-and-query/advanced-concepts/scoring" >}}) or a [user-provided]({{< relref "/develop/interact/search-and-query/administration/extensions" >}}) scoring function.
339+
uses a [built-in]({{< relref "/develop/ai/search-and-query/advanced-concepts/scoring" >}}) or a [user-provided]({{< relref "/develop/ai/search-and-query/administration/extensions" >}}) scoring function.
340340
</details>
341341

342342
<details open>
@@ -495,6 +495,6 @@ Next, count GitHub events by user (actor), to produce the most active users.
495495

496496
## Related topics
497497

498-
- [Aggregations]({{< relref "/develop/interact/search-and-query/advanced-concepts/aggregations" >}})
499-
- [RediSearch]({{< relref "/develop/interact/search-and-query" >}})
498+
- [Aggregations]({{< relref "/develop/ai/search-and-query/advanced-concepts/aggregations" >}})
499+
- [RediSearch]({{< relref "/develop/ai/search-and-query" >}})
500500

content/commands/ft.aliasadd.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,4 +80,4 @@ Attempting to add the same alias returns a message that the alias already exists
8080

8181
## Related topics
8282

83-
[RediSearch]({{< relref "/develop/interact/search-and-query/" >}})
83+
[RediSearch]({{< relref "/develop/ai/search-and-query/" >}})

content/commands/ft.aliasdel.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,4 @@ OK
6666

6767
## Related topics
6868

69-
[RediSearch]({{< relref "/develop/interact/search-and-query/" >}})
69+
[RediSearch]({{< relref "/develop/ai/search-and-query/" >}})

content/commands/ft.aliasupdate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,4 @@ OK
6868

6969
## Related topics
7070

71-
[RediSearch]({{< relref "/develop/interact/search-and-query/" >}})
71+
[RediSearch]({{< relref "/develop/ai/search-and-query/" >}})

content/commands/ft.alter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ OK
102102

103103
## Related topics
104104

105-
- [RediSearch]({{< relref "/develop/interact/search-and-query/" >}})
105+
- [RediSearch]({{< relref "/develop/ai/search-and-query/" >}})
106106

107107

108108

content/commands/ft.config-get.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,4 +146,4 @@ FT.CONFIG GET returns an array reply of the configuration name and value.
146146

147147
## Related topics
148148

149-
[RediSearch]({{< relref "/develop/interact/search-and-query/" >}})
149+
[RediSearch]({{< relref "/develop/ai/search-and-query/" >}})

content/commands/ft.config-help.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,4 +71,4 @@ FT.CONFIG HELP returns an array reply of the configuration name and value.
7171

7272
## Related topics
7373

74-
[RediSearch]({{< relref "/develop/interact/search-and-query/" >}})
74+
[RediSearch]({{< relref "/develop/ai/search-and-query/" >}})

content/commands/ft.config-set.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Set the value of a RediSearch configuration parameter.
4040

4141
Values set using `FT.CONFIG SET` are not persisted after server restart.
4242

43-
RediSearch configuration parameters are detailed in [Configuration parameters]({{< relref "/develop/interact/search-and-query/administration/configuration" >}}).
43+
RediSearch configuration parameters are detailed in [Configuration parameters]({{< relref "/develop/ai/search-and-query/administration/configuration" >}}).
4444

4545
{{% alert title="Note" color="warning" %}}
4646
As detailed in the link above, not all RediSearch configuration parameters can be set at runtime.
@@ -83,4 +83,4 @@ OK
8383

8484
## Related topics
8585

86-
[RediSearch]({{< relref "/develop/interact/search-and-query/" >}})
86+
[RediSearch]({{< relref "/develop/ai/search-and-query/" >}})

0 commit comments

Comments
 (0)