Redis Insight Guides are no longer actively maintained or supported.
Check our tutorials to find helpful use cases, comments, and related demonstrations of Redis features to help you level up your Redis game.
The Quick Guides are documents that contain sets of instructions, commands, and comments. Users can use built-in guides in order to gain an understanding of a certain Redis subject, which accelerates the adoption of Redis features among the Redis community.
The content of the Quick Guides can be updated independently without a need to update the entire application.
This document provides an overview of the Quick Guides structure, its elements and contains instructions, recommendations, and best practices for updating the content of Quick Guides.
Download this example with Redis Stack Tutorials and upload the archive using the "Upload Tutorial" feature in Workbench so you can view and work with them in Redis Insight.
To upload your own tutorials, specify a link or folder path to a .zip archive with your tutorials.
Below you can find information about the structure and logic for creating your own tutorials.
Quick Guides allows you to render recursive objects, such as a file directory.
On the root level of guides folder, we have manifest.json
and all necessary static files (markdowns, images, etc.)
The content of this area is generated based on Nodes specified inside manifest.json
.
This JSON file is described as a simple Objects which represents tree node and might have children nodes inside.
Manifest file should start with single Node and should have properties described below (it will be displayed as type "group"):
Prop | Type | Description |
---|---|---|
label (required) | string | Label that will be displayed on UI for Node |
children (required) | Node[] | List of Nodes (nested groups or markdown files) |
type | "group", "internal-link" | This field is required for default guides, for user guides no reason to specify anything - it will be override to "group" |
keywords | string[] | Used for tags/labels |
author | string | Author name |
URL | string | Link to repository/web-site |
industry | string[] | Tags to show relevant industry |
description | string | Short description of tutorials |
Each Node requires a label
,type
(all available properties are described in the table below).
Prop | Type | Description |
---|---|---|
id | string | |
type (required) | "group", "internal-link" | |
label (required) | string | Label that will be displayed on UI for Node |
children | Node[] | Use only for "group" type |
args | Record<string, any> | A special set of parameters required by a certain type of node (each type has its own) |
A Node can be represented by various UI components and is specified by type
prop. Supported types are listed below.
Type | Description | Args |
---|---|---|
"internal-link" | A link that opens a page inside the Enablement Area (e.g. link to guide page). |
- "path" (required, string) - relative file path |
"group" | Grouping several nodes into one directory/folder. Allows you to create nested lists |
- "initialIsOpen" (boolean) - The group will start in the open state (default value - false) |
!Note. All "internal-link" nodes located in the same "group" will be connected to each other. And using pagination (created dynamically) you can go directly from one page to another. Therefore, it is best to combine elements into groups related to the same topic.
{
"type": "group",
"id": "document",
"label": "Document",
"args": {
"initialIsOpen": true
},
"children": [
{
"type": "internal-link",
"id": "introduction",
"label": "Introduction",
"args": {
"path": "/quick-guides/document/introduction.md"
}
},
{
"type": "internal-link",
"id": "learn-more",
"label": "Learn More",
"args": {
"path": "/quick-guides/document/learn-more.md"
}
}
]
}
By using "internal-link" node we can open some Markdown Guides located in guides folder.
These guides may contain the following elements:
- Plain text
- Basic Markdown Syntax
- Extended Markdown Syntax
- HTML tags
- Images
- Custom Syntax
Basic Markdown syntax provides the ability to render images. (Image Markdown Syntax)
You can use a relative path to images inside the guides folder, using the following logic:
./
means the current directory;../
means the parent of the current directory.
For example:
![RedisInsight Browser screenshot](./_images/aggregations.png)
A button that inserts Redis commands in the Editor. The syntax is almost the same as for the Fenced Code Block,
the only difference is that you must specify redis
as language and the label next to it (Create
in the example below).
```redis Create
// Let's add three documents as Hashes.
// Each document represents a building permit.
HSET permit:1 "description" "To reconstruct a single detached house with a front covered veranda." "construction_value" 42000 "building_type" "single detached house" "address_city" "Lisbon" "work_type" "demolition,reconstruction" "permit_timestamp" "1602156878" "address_street" "R. Da Palma" "location" "38.717746, -9.135839"
HSET permit:2 "description" "To construct a loft" "construction_value" 53000 "building_type" "apartment" "address_city" "Porto" "work_type" "construction" "permit_timestamp" "1556546400" "address_street" "Rua da Boavista" "location" "41.155854, -8.616721"
HSET permit:3 "description" "New house build" "construction_value" 260000 "building_type" "house" "address_city" "Lagos" "work_type" "construction;design" "permit_timestamp" "1612947600" "address_street" "R. Antonio Gedeao" "location" "37.114864, -8.668521"
```
You can customize the run parameters to configure the raw mode, pipeline parameter and group mode. If specified, they will override
the configuration set in Redis Insight. If not specified - the behaviour will be defined by parameters set in Redis Insight.
To specify the parameters, insert them after the redis-auto:
and add the parameters in square brackets separated with a semicolon (;
) in
the following way:
redis:[<parameter1>;<parameter2>;<...>;<parameterN>]
Ensure that all the parameters are listed without spaces, ordering does not matter.
Supported parameters:
Name | Values | Notes | Description |
---|---|---|---|
results | * single * group * silent |
If enabled, then pipeline mode is ignored | * single - Disable the group mode to display the command results in a batch or as separate ones. * group - Enable the group mode * silent: 1. Enable the group mode 2. Auto collapse the result 3. Show only error commands in the results |
mode | * ascii * raw |
Enable/disable the raw mode to display command results. | |
pipeline | any integer number | Configure the number of commands in the pipeline. 0 or 1 pipelines every command. | |
auto | * true * false |
Configure the auto execute commands after click on the button |
Notes:
- Ensure that there are no spaces
- All the parameters with mistakes will be ignored
Examples:
redis:[results=single]
redis:[auto=true;mode=raw]
redis:[pipeline=1]
redis:[results=silent;mode=raw]
redis:[results=single;pipeline=4]
redis:[results=group;mode=ascii]
redis:[auto=true;pipeline=8;mode=raw;results=single;]
A button that automatically executes the Redis commands (without inserting it into the Editor). Such buttons will be displayed with the "Play" icon inside.
The code syntax is the same as for the manually executed buttons, just insert parameter [auto=true]
with any other parameters before the button.
```redis:[auto=true;mode=raw] Create
// Let's add three documents as Hashes.
// Each document represents a building permit.
HSET permit:1 "description" "To reconstruct a single detached house with a front covered veranda." "construction_value" 42000 "building_type" "single detached house" "address_city" "Lisbon" "work_type" "demolition,reconstruction" "permit_timestamp" "1602156878" "address_street" "R. Da Palma" "location" "38.717746, -9.135839"
HSET permit:2 "description" "To construct a loft" "construction_value" 53000 "building_type" "apartment" "address_city" "Porto" "work_type" "construction" "permit_timestamp" "1556546400" "address_street" "Rua da Boavista" "location" "41.155854, -8.616721"
HSET permit:3 "description" "New house build" "construction_value" 260000 "building_type" "house" "address_city" "Lagos" "work_type" "construction;design" "permit_timestamp" "1612947600" "address_street" "R. Antonio Gedeao" "location" "37.114864, -8.668521"
```
Works only with default guides
Our application supports the ability to quickly update the static files of the Enablement area so that we can provide users with up-to-date information.
EA guides auto-update flow:
- Push commit with updates to
/guides
repository branch - Approve guides release in CircleCI.
- Reopen the Redis Insight with a working internet connection. In the background, new files will be downloaded to the user's local home directory:
- Mac: In the
/Users/<your-username>/.redisinsight-v2/guides
directory. - Windows: In the
C:\Users\<your-username>\.redisinsight-v2\guides
directory. - Linux: In the
/home/<your-username>/.redisinsight-v2/guides
directory.
- Mac: In the
- Open Enablement area on UI
Let's imagine that we need to add a new group (Streams) with 2 pages (Basics, Getting data).
Step by step implementation would be as follows:
- First of all, it's best to create new pages locally and make sure that everything looks like it was planned.
- Clone Guides repository (if you haven't done it before) and go into
<folder to guides repo>/src
- Create a new branch from the
main
- Add new
streams
folder withbasics.md
andgetting-data.md
. As a result, the folder structure will look something like this.
guides
> quick-guides
> document
> streams
basics.md
getting-data.md
manifest.json
- Add new nodes inside
manifest.json
{
"type": "group",
"id": "quick-guides",
"label": "QUICK GUIDES",
"children": [
{
"type": "group",
"id": "streams",
"label": "Streams",
"children": [
{
"type": "internal-link",
"id": "basics",
"label": "Basics",
"args": {
"path": "/quick-guides/streams/basics.md"
}
},
{
"type": "internal-link",
"id": "getting-data",
"label": "Get Data",
"args": {
"path": "/quick-guides/streams/getting-data.md"
}
}
]
}
]
}
- Fill markdowns with content.
basics.md
For the goal of understanding what Redis Streams are and how to use them, we will ignore all the advanced features, and instead focus on the data structure itself, in terms of commands used to manipulate and access it.
This is, basically, the part that is common to most of the other Redis data types, like Lists, Sets, Sorted Sets and so forth.
However, note that lists also have an optional more complex blocking API, exported by commands like BLPOP and similar.
So streams are not much different than lists in this regard, it's just that the additional API is more complex and more powerful.
Because Streams are an append-only data structure, the fundamental write command, called **XADD**, appends a new entry into the specified stream.
A stream entry is not just a string but is instead composed of one or multiple field-value pairs.
This way, each entry of a stream is already structured, like an append-only file written in CSV format where multiple separated fields are present in each line.
```redis Create
XADD mystream * sensor-id 1234 temperature 19.8
```
getting-data.md
Querying by range: **XRANGE** and **XREVRANGE*
To query the stream by the range we are only required to specify two IDs, _start_ and _end_.
The range returned will include the elements having start or end as ID, so the range is inclusive. The two special IDs - and + respectively mean the smallest and the greatest ID possible.
```redis XRANGE
XRANGE mystream - +
```
```redis XREVRANGE
XREVRANGE mystream + - COUNT 1
```
-
Open Redis Insight application with
GUIDES_DEV_PATH
environment variable GUIDES_DEV_PATH='/src>' ./Example on Linux:
GUIDES_DEV_PATH='/home/user/projects/Guides/src' ./home/user/programms/RedisInsight.AppImage
-
Make sure that everything looks fine.
- After that, just commit and push, and then create Pull Request to the main branch. (Release flow described in the Autoupdate Flow section).