Skip to content

Commit 174f535

Browse files
Merge pull request #12 from RedisInsight/main
prod
2 parents f612119 + 7a2593b commit 174f535

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

src/guide-links.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,31 @@
22
{
33
"title": "Search and Query",
44
"tutorial": "/quick-guides/document/introduction.md",
5+
"tutorialId": "sq-intro",
56
"icon": "search"
67
},
78
{
89
"title": "Vector Similarity Search",
910
"tutorial": "/quick-guides/vector-similarity-search/introduction.md",
11+
"tutorialId": "sq-vector",
1012
"icon": "vector-similarity-search"
1113
},
1214
{
1315
"title": "JSON",
1416
"tutorial": "/quick-guides/document/working-with-json.md",
17+
"tutorialId": "ds-json-intro",
1518
"icon": "json"
1619
},
1720
{
1821
"title": "Time Series",
1922
"tutorial": "/quick-guides/time-series/introduction.md",
23+
"tutorialId": "ds-ts-intro",
2024
"icon": "time-series"
2125
},
2226
{
2327
"title": "Probabilistic Data Structures",
2428
"tutorial": "/quick-guides/probabilistic-data-structures/introduction.md",
29+
"tutorialId": "ds-prob-intro",
2530
"icon": "probabilistic-data-structures"
2631
}
2732
]

src/recommendations.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@
7676
"title": "Shard big hashes to small hashes",
7777
"redisStack": true,
7878
"tutorial": "/quick-guides/document/introduction.md",
79+
"tutorialId": "ds-hashes",
7980
"content": [
8081
{
8182
"type": "paragraph",
@@ -133,6 +134,7 @@
133134
"combineSmallStringsToHashes": {
134135
"id": "combineSmallStringsToHashes",
135136
"title": "Combine small strings to hashes",
137+
"tutorialId": "ds-hashes",
136138
"content": [
137139
{
138140
"type": "span",
@@ -381,6 +383,7 @@
381383
"id": "bigStrings",
382384
"title": "Avoid large strings",
383385
"tutorial": "/quick-guides/document/introduction.md",
386+
"tutorialId": "ds-json-intro",
384387
"content": [
385388
{
386389
"type": "span",
@@ -516,6 +519,7 @@
516519
"telemetryEvent": "optimizeExistenceChecks",
517520
"title": "Consider using probabilistic data structures such as Bloom Filter or HyperLogLog",
518521
"tutorial": "/quick-guides/probabilistic-data-structures/introduction.md",
522+
"tutorialId": "ds-prob-intro",
519523
"redisStack": true,
520524
"content": [
521525
{
@@ -662,6 +666,7 @@
662666
"title":"Try using the Redis native time series data structure and querying capabilities",
663667
"redisStack": true,
664668
"tutorial": "/quick-guides/time-series/introduction.md",
669+
"tutorialId": "ds-ts-intro",
665670
"content": [
666671
{
667672
"type": "span",
@@ -867,6 +872,7 @@
867872
"deprecated": true,
868873
"redisStack": true,
869874
"tutorial": "/redis_stack/working_with_json.md",
875+
"tutorialId": "ds-json-intro",
870876
"content": [
871877
{
872878
"type": "link",
@@ -917,6 +923,7 @@
917923
"title":"Try using the indexing, querying, and full-text search, natively developed in Redis",
918924
"redisStack": true,
919925
"tutorial": "/quick-guides/document/introduction.md",
926+
"tutorialId": "sq-intro",
920927
"content": [
921928
{
922929
"type": "paragraph",
@@ -1040,6 +1047,7 @@
10401047
"title": "Try indexing your JSON documents for efficient data retrieval",
10411048
"redisStack": true,
10421049
"tutorial": "/quick-guides/document/introduction.md",
1050+
"tutorialId": "sq-intro",
10431051
"content": [
10441052
{
10451053
"type": "span",
@@ -1131,6 +1139,7 @@
11311139
"title": "Try using our JSON native document store",
11321140
"redisStack": true,
11331141
"tutorial": "/quick-guides/document/introduction.md",
1142+
"tutorialId": "ds-json-intro",
11341143
"content": [
11351144
{
11361145
"type": "paragraph",
@@ -1248,6 +1257,7 @@
12481257
"id": "searchVisualization",
12491258
"title": "Try Workbench, the advanced command-line interface",
12501259
"tutorial": "",
1260+
"tutorialId": "",
12511261
"content": [
12521262
{
12531263
"type": "paragraph",
@@ -1311,6 +1321,7 @@
13111321
"id": "searchHash",
13121322
"title": "Try indexing your hash documents to query and retrieve data",
13131323
"tutorial": "/quick-guides/document/introduction.md",
1324+
"tutorialId": "sq-intro",
13141325
"redisStack": true,
13151326
"content": [
13161327
{
@@ -1441,6 +1452,7 @@
14411452
"id": "luaToFunctions",
14421453
"title": "Consider using triggers and functions",
14431454
"tutorial": "/quick-guides/triggers-and-functions/introduction.md",
1455+
"tutorialId": "tf-intro",
14441456
"content": [
14451457
{
14461458
"type": "paragraph",
@@ -1502,6 +1514,7 @@
15021514
"id": "functionsWithStreams",
15031515
"title": "Consider using triggers and functions to react in real-time to stream entries",
15041516
"tutorial": "/quick-guides/triggers-and-functions/introduction.md",
1517+
"tutorialId": "tf-intro",
15051518
"content": [
15061519
{
15071520
"type": "paragraph",
@@ -1579,6 +1592,7 @@
15791592
"id": "functionsWithKeyspace",
15801593
"title": "Consider using triggers and functions to react in real-time to database changes",
15811594
"tutorial": "/quick-guides/triggers-and-functions/introduction.md",
1595+
"tutorialId": "tf-intro",
15821596
"content": [
15831597
{
15841598
"type": "paragraph",

0 commit comments

Comments
 (0)