Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 19 additions & 7 deletions redisinsight/ui/src/constants/dbAnalysisRecommendations.json
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,10 @@
"type": "paragraph",
"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."
},
{
"type": "spacer",
"value": "l"
},
{
"type": "span",
"value": "Run "
Expand Down Expand Up @@ -410,7 +414,7 @@
"content": [
{
"type": "span",
"value": "Increase"
"value": "Increase "
},
{
"type": "code",
Expand Down Expand Up @@ -478,7 +482,7 @@
"id": "bigSets",
"telemetryEvent": "optimizeExistenceChecks",
"title": "Consider using probabilistic data structures such as Bloom Filter or HyperLogLog",
"tutorial": "/redis_stack/probabilistic_data_structures.md",
"tutorial": "/quick-guides/probabilistic-data-structures/introduction.md",
"redisStack": true,
"content": [
{
Expand Down Expand Up @@ -591,7 +595,7 @@
"telemetryEvent": "optimizeTimeSeries",
"title":"Try using the Redis native time series data structure and querying capabilities",
"redisStack": true,
"tutorial": "/redis_stack/redis_for_time_series.md",
"tutorial": "/quick-guides/time-series/introduction.md",
"content": [
{
"type": "span",
Expand Down Expand Up @@ -903,7 +907,7 @@
"id": "searchJSON",
"title": "Try indexing your JSON documents for efficient data retrieval",
"redisStack": true,
"tutorial": "/redis_stack/working_with_json.md",
"tutorial": "/quick-guides/document/working-with-json.md",
"content": [
{
"type": "span",
Expand Down Expand Up @@ -980,8 +984,16 @@
"value": "l"
},
{
"type": "paragraph",
"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."
"type": "span",
"value": "The IntSet encoding is extremely memory efficient. By default, the value of "
},
{
"type": "code",
"value": "set-max-intset-entries"
},
{
"type": "span",
"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."
},
{
"type": "spacer",
Expand Down Expand Up @@ -1027,7 +1039,7 @@
"id": "stringToJson",
"title": "Try using our JSON native document store",
"redisStack": true,
"tutorial": "/redis_stack/working_with_json.md",
"tutorial": "/quick-guides/document/working-with-json.md",
"content": [
{
"type": "paragraph",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ const Recommendations = () => {
badges = [],
redisStack = false,
tutorial,
telemetryEvent = ''
telemetryEvent
} = recommendationsContent[name] || {}

if (!(name in recommendationsContent)) {
Expand Down