Skip to content

Commit 00bbe97

Browse files
committed
Merge branch 'release-rs-gilboa' into DOC-5680
2 parents 4712f0e + fd90de7 commit 00bbe97

File tree

231 files changed

+6954
-748
lines changed

Some content is hidden

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

231 files changed

+6954
-748
lines changed

.github/workflows/redisvl_docs_sync.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,13 +277,16 @@ jobs:
277277
if [ ${isLatest} = true ]; then
278278
cp -r redis_vl_hugo/* content/develop/ai/redisvl/
279279
else
280-
mkdir content/develop/ai/redisvl/${version}/
280+
mkdir -p content/develop/ai/redisvl/${version}/
281281
cp -r redis_vl_hugo/* content/develop/ai/redisvl/${version}/
282282
cp content/develop/ai/redisvl/_index.md content/develop/ai/redisvl/${version}/_index.md
283283
cp content/develop/ai/redisvl/install.md content/develop/ai/redisvl/${version}/install.md
284284
python3 build/version_archiver.py redisvl ${version} --skip-archive
285285
fi
286286
287+
# Globally replace unicode quotes to ASCII
288+
find content/develop/ai/redisvl/ -type f -exec sed -i 's/[“”]/"/g' {} \;
289+
287290
- name: 'Create pull request if necessary'
288291
env:
289292
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

assets/css/index.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -259,16 +259,16 @@ select {
259259
}
260260

261261
.search-item {
262-
@apply bg-white rounded-md relative text-redis-ink-900 border border-redis-pen-800;
262+
@apply bg-gray-700 rounded-md relative text-gray-300 border border-gray-600;
263263
}
264264

265265
.search-item[aria-selected] {
266-
@apply bg-red-100;
266+
@apply bg-gray-600;
267267
}
268268

269269
.search-item:hover,
270270
.search-item:not([aria-selected]):focus-within {
271-
@apply bg-red-50 text-redis-pen-800;
271+
@apply bg-gray-600 text-white;
272272
}
273273

274274
.search-item > a {
@@ -720,7 +720,7 @@ html {
720720

721721
/* Names - Red (NameNamespace) */
722722
.chroma .nn {
723-
@apply text-red-400;
723+
@apply text-blue-400;
724724
}
725725

726726
/* Names - Green (NameTag) */

content/commands/acl-log.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Each log entry is composed of the following fields:
9292
5. `username`: The username that executed the command that caused the security events or the username that had a failed authentication attempt.
9393
6. `age-seconds`: Age of the log entry in seconds.
9494
7. `client-info`: Displays the client info of a client which caused one of the security events.
95-
8. `entry-id`: The sequence number of the entry (starting at 0) since the server process started. Can also be used to check if items were lost, if they fell between periods.
95+
8. `entry-id`: The sequence number of the entry (starting at 0) since the server process started. Can also be used to check if items were "lost", if they fell between periods.
9696
9. `timestamp-created`: A UNIX timestamp in `milliseconds` at the time the entry was first created.
9797
10. `timestamp-last-updated`: A UNIX timestamp in `milliseconds` at the time the entry was last updated.
9898

content/commands/cf.count.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ redis> CF.COUNT cf item2
6363

6464
## Return information
6565

66-
{{< multitabs id=cf-count-return-info"
66+
{{< multitabs id="cf-count-return-info"
6767
tab1="RESP2"
6868
tab2="RESP3" >}}
6969

content/commands/cf.del.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ redis> CF.DEL cf item2
7777

7878
## Return information
7979

80-
{{< multitabs id=cf-del-return-info"
80+
{{< multitabs id="cf-del-return-info"
8181
tab1="RESP2"
8282
tab2="RESP3" >}}
8383

content/commands/cf.info.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ redis> CF.INFO cf
6464

6565
One of the following:
6666

67-
{{< multitabs id=cf-info-return-info"
67+
{{< multitabs id="cf-info-return-info"
6868
tab1="RESP2"
6969
tab2="RESP3" >}}
7070

content/commands/cf.insert.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ redis> CF.INSERT cf2 ITEMS 1 1 1 1
109109

110110
## Return information
111111

112-
{{< multitabs id=cf-insert-return-info"
112+
{{< multitabs id="cf-insert-return-info"
113113
tab1="RESP2"
114114
tab2="RESP3" >}}
115115

content/commands/cf.insertnx.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ redis> CF.INSERTNX cf_new CAPACITY 1000 NOCREATE ITEMS item1 item2
119119

120120
## Return information
121121

122-
{{< multitabs id=cf-insert-return-info"
122+
{{< multitabs id="cf-insert-return-info"
123123
tab1="RESP2"
124124
tab2="RESP3" >}}
125125

content/commands/cluster-slot-stats.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ The command reports on the following statistics:
110110

111111
## Return information
112112

113-
{{< multitabs id=cmd-name-return-info"
113+
{{< multitabs id="cmd-name-return-info"
114114
tab1="RESP2"
115115
tab2="RESP3" >}}
116116

content/commands/cms.incrby.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ redis> CMS.INCRBY test foo 10 bar 42
5555

5656
## Return information
5757

58-
{{< multitabs id=cms-incrby-return-info"
58+
{{< multitabs id="cms-incrby-return-info"
5959
tab1="RESP2"
6060
tab2="RESP3" >}}
6161

0 commit comments

Comments
 (0)