Skip to content

Commit ff580f5

Browse files
#RI-4409 - fix static (#2101)
1 parent 9f096b7 commit ff580f5

File tree

2 files changed

+20
-8
lines changed

2 files changed

+20
-8
lines changed

redisinsight/ui/src/constants/dbAnalysisRecommendations.json

Lines changed: 19 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,10 @@
192192
"type": "paragraph",
193193
"value": "Several set values with IntSet encoding exceed the set-max-intset-entries. Change the configuration in redis.conf to efficiently use the IntSet encoding. Though increasing this value will lead to an increase in the latency of set operations and CPU utilization."
194194
},
195+
{
196+
"type": "spacer",
197+
"value": "l"
198+
},
195199
{
196200
"type": "span",
197201
"value": "Run "
@@ -410,7 +414,7 @@
410414
"content": [
411415
{
412416
"type": "span",
413-
"value": "Increase"
417+
"value": "Increase "
414418
},
415419
{
416420
"type": "code",
@@ -478,7 +482,7 @@
478482
"id": "bigSets",
479483
"telemetryEvent": "optimizeExistenceChecks",
480484
"title": "Consider using probabilistic data structures such as Bloom Filter or HyperLogLog",
481-
"tutorial": "/redis_stack/probabilistic_data_structures.md",
485+
"tutorial": "/quick-guides/probabilistic-data-structures/introduction.md",
482486
"redisStack": true,
483487
"content": [
484488
{
@@ -591,7 +595,7 @@
591595
"telemetryEvent": "optimizeTimeSeries",
592596
"title":"Try using the Redis native time series data structure and querying capabilities",
593597
"redisStack": true,
594-
"tutorial": "/redis_stack/redis_for_time_series.md",
598+
"tutorial": "/quick-guides/time-series/introduction.md",
595599
"content": [
596600
{
597601
"type": "span",
@@ -903,7 +907,7 @@
903907
"id": "searchJSON",
904908
"title": "Try indexing your JSON documents for efficient data retrieval",
905909
"redisStack": true,
906-
"tutorial": "/redis_stack/working_with_json.md",
910+
"tutorial": "/quick-guides/document/working-with-json.md",
907911
"content": [
908912
{
909913
"type": "span",
@@ -980,8 +984,16 @@
980984
"value": "l"
981985
},
982986
{
983-
"type": "paragraph",
984-
"value": "The IntSet encoding is extremely memory efficient. By default, the value of `set-max-intset-entries` is 512 and is configurable in redis.conf. However, increasing this value will lead to an increase in the latency of set operations and CPU utilization."
987+
"type": "span",
988+
"value": "The IntSet encoding is extremely memory efficient. By default, the value of "
989+
},
990+
{
991+
"type": "code",
992+
"value": "set-max-intset-entries"
993+
},
994+
{
995+
"type": "span",
996+
"value": " is 512 and is configurable in redis.conf. However, increasing this value will lead to an increase in the latency of set operations and CPU utilization."
985997
},
986998
{
987999
"type": "spacer",
@@ -1027,7 +1039,7 @@
10271039
"id": "stringToJson",
10281040
"title": "Try using our JSON native document store",
10291041
"redisStack": true,
1030-
"tutorial": "/redis_stack/working_with_json.md",
1042+
"tutorial": "/quick-guides/document/working-with-json.md",
10311043
"content": [
10321044
{
10331045
"type": "paragraph",

redisinsight/ui/src/pages/databaseAnalysis/components/recommendations-view/Recommendations.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ const Recommendations = () => {
165165
badges = [],
166166
redisStack = false,
167167
tutorial,
168-
telemetryEvent = ''
168+
telemetryEvent
169169
} = recommendationsContent[name] || {}
170170

171171
if (!(name in recommendationsContent)) {

0 commit comments

Comments
 (0)