Skip to content

Commit 7512730

Browse files
authored
Fix double slash issue (#1242)
1 parent 2d5eeba commit 7512730

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

content/develop/get-started/vector-database.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ Inspect the structure of one of the bike JSON documents:
111111
{{< clients-example search_vss dump_data />}}
112112

113113
### 2. Store the demo data in Redis
114-
Now iterate over the `bikes` array to store the data as [JSON]({{< relref "/develop/data-types/json/" >}}) documents in Redis by using the [JSON.SET]({{< baseurl >}}commands/json.set//) command. The below code uses a [pipeline]({{< relref "/develop/use/pipelining" >}}) to minimize the network round-trip times:
114+
Now iterate over the `bikes` array to store the data as [JSON]({{< relref "/develop/data-types/json/" >}}) documents in Redis by using the [JSON.SET]({{< baseurl >}}commands/json.set/) command. The below code uses a [pipeline]({{< relref "/develop/use/pipelining" >}}) to minimize the network round-trip times:
115115

116116
{{< clients-example search_vss load_data />}}
117117

content/develop/interact/programmability/lua-api.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -558,27 +558,27 @@ The following sections describe the type conversion rules between Lua and Redis
558558

559559
The following type conversion rules apply to the execution's context by default as well as after calling `redis.setresp(2)`:
560560

561-
* [RESP2 integer reply]({{< baseurl>}}/develop/reference/protocol-spec#integers) -> Lua number
562-
* [RESP2 bulk string reply]({{< baseurl>}}/develop/reference/protocol-spec#bulk-strings) -> Lua string
563-
* [RESP2 array reply]({{< baseurl>}}/develop/reference/protocol-spec#arrays) -> Lua table (may have other Redis data types nested)
564-
* [RESP2 status reply]({{< baseurl>}}/develop/reference/protocol-spec#simple-strings) -> Lua table with a single _ok_ field containing the status string
565-
* [RESP2 error reply]({{< baseurl>}}/develop/reference/protocol-spec#simple-errors) -> Lua table with a single _err_ field containing the error string
566-
* [RESP2 null bulk reply]({{< baseurl>}}/develop/reference/protocol-spec#bulk-strings) and [RESP2 null multi-bulk reply]({{< baseurl>}}/develop/reference/protocol-spec#arrays) -> Lua false boolean type
561+
* [RESP2 integer reply]({{< baseurl >}}develop/reference/protocol-spec#integers) -> Lua number
562+
* [RESP2 bulk string reply]({{< baseurl >}}develop/reference/protocol-spec#bulk-strings) -> Lua string
563+
* [RESP2 array reply]({{< baseurl >}}develop/reference/protocol-spec#arrays) -> Lua table (may have other Redis data types nested)
564+
* [RESP2 status reply]({{< baseurl >}}develop/reference/protocol-spec#simple-strings) -> Lua table with a single _ok_ field containing the status string
565+
* [RESP2 error reply]({{< baseurl >}}develop/reference/protocol-spec#simple-errors) -> Lua table with a single _err_ field containing the error string
566+
* [RESP2 null bulk reply]({{< baseurl >}}develop/reference/protocol-spec#bulk-strings) and [RESP2 null multi-bulk reply]({{< baseurl >}}develop/reference/protocol-spec#arrays) -> Lua false boolean type
567567

568568
## Lua to RESP2 type conversion
569569

570570
The following type conversion rules apply by default as well as after the user had called `HELLO 2`:
571571

572-
* Lua number -> [RESP2 integer reply]({{< baseurl>}}/develop/reference/protocol-spec#integers) (the number is converted into an integer)
573-
* Lua string -> [RESP2 bulk string reply]({{< baseurl>}}/develop/reference/protocol-spec#bulk-strings)
574-
* Lua table (indexed, non-associative array) -> [RESP2 array reply]({{< baseurl>}}/develop/reference/protocol-spec#arrays) (truncated at the first Lua `nil` value encountered in the table, if any)
575-
* Lua table with a single _ok_ field -> [RESP2 status reply]({{< baseurl>}}/develop/reference/protocol-spec#simple-strings)
576-
* Lua table with a single _err_ field -> [RESP2 error reply]({{< baseurl>}}/develop/reference/protocol-spec#simple-errors)
577-
* Lua boolean false -> [RESP2 null bulk reply]({{< baseurl>}}/develop/reference/protocol-spec#bulk-strings)
572+
* Lua number -> [RESP2 integer reply]({{< baseurl >}}develop/reference/protocol-spec#integers) (the number is converted into an integer)
573+
* Lua string -> [RESP2 bulk string reply]({{< baseurl >}}develop/reference/protocol-spec#bulk-strings)
574+
* Lua table (indexed, non-associative array) -> [RESP2 array reply]({{< baseurl >}}develop/reference/protocol-spec#arrays) (truncated at the first Lua `nil` value encountered in the table, if any)
575+
* Lua table with a single _ok_ field -> [RESP2 status reply]({{< baseurl >}}develop/reference/protocol-spec#simple-strings)
576+
* Lua table with a single _err_ field -> [RESP2 error reply]({{< baseurl >}}develop/reference/protocol-spec#simple-errors)
577+
* Lua boolean false -> [RESP2 null bulk reply]({{< baseurl >}}develop/reference/protocol-spec#bulk-strings)
578578

579579
There is an additional Lua-to-Redis conversion rule that has no corresponding Redis-to-Lua conversion rule:
580580

581-
* Lua Boolean `true` -> [RESP2 integer reply]({{< baseurl>}}/develop/reference/protocol-spec#integers) with value of 1.
581+
* Lua Boolean `true` -> [RESP2 integer reply]({{< baseurl >}}develop/reference/protocol-spec#integers) with value of 1.
582582

583583
There are three additional rules to note about converting Lua to Redis data types:
584584

content/develop/whats-new/redis-feature-sets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ To use a new feature introduced in a later feature set, you must upgrade the cor
1818
| Redis feature set | What's new |
1919
|-------------------|------------|
2020
| **Feature set version:** 7.4<br /><br />**Component versions:**<br />[Redis 7.4]({{<relref "/operate/oss_and_stack/stack-with-enterprise/release-notes/redisce/redisce-7.4-release-notes.md">}})<br />[Search 2.10]({{< relref "/operate/oss_and_stack/stack-with-enterprise/release-notes/redisearch/redisearch-2.10-release-notes.md" >}})<br />[JSON 2.8]({{<relref "operate/oss_and_stack/stack-with-enterprise/release-notes/redisjson/redisjson-2.8-release-notes.md">}})<br />[Time series 1.12]({{<relref "/operate/oss_and_stack/stack-with-enterprise/release-notes/redistimeseries/redistimeseries-1.12-release-notes.md">}})<br />[Bloom 2.8]({{<relref "/operate/oss_and_stack/stack-with-enterprise/release-notes/redisbloom/redisbloom-2.8-release-notes.md">}}) | **Hash**: <br>- [Expiration of individual hash fields]({{<relref "/develop/data-types/hashes#field-expiration">}}). <br> **Streams**: <br>- To start reading from the last stream message, use [`XREAD`]({{<relref "/commands/xread">}}) with the new ID value `+`.<br> **Time series**: <br>Insertion-filter for close samples. <br> **JSON**: <br>- A fix to not duplicate `AOF` commands multiple times in [`JSON.MSET`]({{< baseurl >}}commands/json.mset/). <br> **Probabilistic**: <br>- Returns an error if [`CMS.MERGE`]({{< baseurl >}}commands/cms.merge/) results in an overflow or underflow. <br> **Redis Query Engine**: <br>- New `BFLOAT16` and `FLOAT16` vector data types, reducing memory consumed by vectors while preserving accuracy. <br>- Support for indexing empty and missing values and enhanced developer experience for queries with exact matching capabilities. <br>- You can match `TAG` fields without needing to escape special characters. <br>- Expanded geospatial search with new `INTERSECT` and `DISJOINT` operators, improved reporting of the memory consumed by the index, and exposed full-text scoring in aggregation pipelines. |
21-
| **Feature set version:** 7.2<br /><br />**Component versions:**<br />[Redis 7.2](https://raw.githubusercontent.com/redis/redis/7.2/00-RELEASENOTES)<br />[Search 2.8]({{< relref "/operate/oss_and_stack/stack-with-enterprise/release-notes/redisearch/redisearch-2.8-release-notes.md" >}})<br />[JSON 2.6]({{<relref "operate/oss_and_stack/stack-with-enterprise/release-notes/redisjson/redisjson-2.6-release-notes.md">}})<br />[Time series 1.10]({{<relref "/operate/oss_and_stack/stack-with-enterprise/release-notes/redistimeseries/redistimeseries-1.10-release-notes.md">}})<br />[Bloom 2.6]({{<relref "/operate/oss_and_stack/stack-with-enterprise/release-notes/redisbloom/redisbloom-2.6-release-notes.md">}})<br />[Gears 2.0](https://github.com/RedisGears/RedisGears/releases) | - Performance and resource utilization improvements, including significant memory and speed optimizations for lists, sets, and sorted sets.<br />**JSON**:<br />- New JSON commands: [`JSON.MERGE`]({{<baseurl>}}/commands/json.merge/) and [`JSON.MSET`]({{<baseurl>}}/commands/json.mset/).<br />**Redis Query Engine:**<br />- [Geo polygon search]({{<baseurl>}}/commands/ft.search/#examples).<br>**Compatibility changes**:<br>- Redis 7.2 uses a new format (version 11) for RDB files, which is incompatible with older versions.<br />- Redis feature set 7.2 does not include [graph capabilities](https://redis.io/blog/redisgraph-eol/). |
21+
| **Feature set version:** 7.2<br /><br />**Component versions:**<br />[Redis 7.2](https://raw.githubusercontent.com/redis/redis/7.2/00-RELEASENOTES)<br />[Search 2.8]({{< relref "/operate/oss_and_stack/stack-with-enterprise/release-notes/redisearch/redisearch-2.8-release-notes.md" >}})<br />[JSON 2.6]({{<relref "operate/oss_and_stack/stack-with-enterprise/release-notes/redisjson/redisjson-2.6-release-notes.md">}})<br />[Time series 1.10]({{<relref "/operate/oss_and_stack/stack-with-enterprise/release-notes/redistimeseries/redistimeseries-1.10-release-notes.md">}})<br />[Bloom 2.6]({{<relref "/operate/oss_and_stack/stack-with-enterprise/release-notes/redisbloom/redisbloom-2.6-release-notes.md">}})<br />[Gears 2.0](https://github.com/RedisGears/RedisGears/releases) | - Performance and resource utilization improvements, including significant memory and speed optimizations for lists, sets, and sorted sets.<br />**JSON**:<br />- New JSON commands: [`JSON.MERGE`]({{< baseurl >}}commands/json.merge/) and [`JSON.MSET`]({{< baseurl >}}commands/json.mset/).<br />**Redis Query Engine:**<br />- [Geo polygon search]({{< baseurl >}}commands/ft.search/#examples).<br>**Compatibility changes**:<br>- Redis 7.2 uses a new format (version 11) for RDB files, which is incompatible with older versions.<br />- Redis feature set 7.2 does not include [graph capabilities](https://redis.io/blog/redisgraph-eol/). |
2222
| **Feature set version:** 6.2<br /><br />**Component versions:**<br />[Redis 6.2](https://raw.githubusercontent.com/redis/redis/6.2/00-RELEASENOTES)<br />[Search 2.6]({{< relref "/operate/oss_and_stack/stack-with-enterprise/release-notes/redisearch/redisearch-2.6-release-notes.md" >}})<br />[JSON 2.4]({{<relref "operate/oss_and_stack/stack-with-enterprise/release-notes/redisjson/redisjson-2.4-release-notes.md">}})<br />[Time series 1.8]({{<relref "/operate/oss_and_stack/stack-with-enterprise/release-notes/redistimeseries/redistimeseries-1.8-release-notes.md">}})<br />[Bloom 2.4]({{<relref "/operate/oss_and_stack/stack-with-enterprise/release-notes/redisbloom/redisbloom-2.4-release-notes.md">}})<br />[Graph 2.10]({{<relref "/operate/oss_and_stack/stack-with-enterprise/release-notes/redisgraph/redisgraph-2.10-release-notes.md">}}) | **Time series**:<br />- Time series gap filling.<br />**JSON**:<br />- Improved JSON path parser.<br />**Probabilistic:**<br />- New probabilistic data structure t-digest.<br />**Redis Query Engine:**<br />- Wildcard queries for `TEXT` and `TAG`.<br />- Suffix search.<br />- Multi-value indexing and queries.<br />**Graph**:<br />- New pathfinding algorithms for graphs. |
2323

layouts/_default/apireference.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<title>Redis Cloud API</title>
66
{{ partial "scss.html" (dict "path" "scss/style.scss") }}
77
{{ partial "css.html" (dict "path" "css/index.css") }}
8-
{{ $relref := printf "%s%s" .Site.BaseURL "/operate/rc/api/" }}
8+
{{ $relref := printf "%s%s" .Site.BaseURL "operate/rc/api/" }}
99
<!-- needed for adaptive design -->
1010
<!-- <link rel="preload" href="/public/scss/style.min.65324e4de191c292ee8b6f4f0ebf01320e8c4bc8623b04e9dfad322ebb490b31.css" as="style">
1111
<link href="/public/scss/style.min.65324e4de191c292ee8b6f4f0ebf01320e8c4bc8623b04e9dfad322ebb490b31.css" rel="stylesheet" integrity="">

layouts/_default/rdiapireference.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<title>Redis Data Integration API</title>
66
{{ partial "scss.html" (dict "path" "scss/style.scss") }}
77
{{ partial "css.html" (dict "path" "css/index.css") }}
8-
{{ $relref := printf "%s%s" .Site.BaseURL "/integrate/redis-data-integration/reference/" }}
8+
{{ $relref := printf "%s%s" .Site.BaseURL "integrate/redis-data-integration/reference/" }}
99
<!-- needed for adaptive design -->
1010
<!-- <link rel="preload" href="/public/scss/style.min.65324e4de191c292ee8b6f4f0ebf01320e8c4bc8623b04e9dfad322ebb490b31.css" as="style">
1111
<link href="/public/scss/style.min.65324e4de191c292ee8b6f4f0ebf01320e8c4bc8623b04e9dfad322ebb490b31.css" rel="stylesheet" integrity="">

0 commit comments

Comments
 (0)