Skip to content

Commit cfd4973

Browse files
committed
RC: Redis Insight Cloud
1 parent c5cddb6 commit cfd4973

File tree

11 files changed

+119
-6
lines changed

11 files changed

+119
-6
lines changed

content/operate/rc/databases/connect.md renamed to content/operate/rc/databases/connect/_index.md

Lines changed: 25 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,33 @@ The connection wizard provides the following database connection methods:
3131

3232
- [Redis client](#using-redis-client) for your preferred programming language
3333

34-
{{<image filename="images/rc/connection-wizard.png" alt="The connection wizard." >}}
34+
{{<image filename="images/rc/connection-wizard.png" alt="The connection wizard." width=500px >}}
3535

3636
## Redis Insight {#using-redisinsight}
3737

38-
[Redis Insight]({{< relref "/develop/tools/insight" >}}) is a free Redis GUI that is available for macOS, Windows, and Linux.
38+
[Redis Insight]({{< relref "/develop/tools/insight" >}}) is a free Redis GUI that lets you visualize your Redis data and learn more about Redis.
39+
40+
You can connect to your database with Redis Insight in two ways:
41+
42+
1. [Open your database in Redis Insight in your browser](#ri-browser).
43+
44+
1. [Download and Install Redis Insight](#ri-app) on Windows, macOS, and Linux.
45+
46+
### Open in your browser {#ri-browser}
47+
48+
{{< note >}}
49+
Opening your database with Redis Insight in your browser is available for Essentials databases hosted on AWS.
50+
{{< /note >}}
51+
52+
To connect to your database with Redis Insight in your browser, select **Open with Redis Insight**.
53+
54+
{{<image filename="images/rc/rc-ri-open.png" alt="Open with Redis Insight" width=200px >}}
55+
56+
Redis Insight will open in a new tab.
57+
58+
This browser-based version of Redis Insight has a subset of the features of Redis Insight. For more information, see [Open with Redis Insight on Redis Cloud]({{< relref "/operate/rc/databases/connect/insight-cloud" >}}).
59+
60+
### Install and open on your computer {#ri-app}
3961

4062
1. If you haven't downloaded Redis Insight, select **Download** under **Redis Insight** in the Connection wizard to download it.
4163

@@ -62,7 +84,7 @@ The connection wizard provides code snippets to connect to your database with th
6284
- Go using [go-redis]({{< relref "/develop/clients/go" >}})
6385
- PHP using [Predis]({{< relref "/develop/clients/php" >}})
6486

65-
{{<image filename="images/rc/connection-wizard-clients.png" alt="The connection wizard clients." >}}
87+
{{<image filename="images/rc/connection-wizard-clients.png" alt="The connection wizard clients." width=500px >}}
6688

6789
If the username and password are not already filled in, replace `<username>` and `<password>` with your username and password.
6890

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
---
2+
Title: Open with Redis Insight on Redis Cloud
3+
alwaysopen: false
4+
categories:
5+
- docs
6+
- operate
7+
- rc
8+
description: Shows how to open your database in a browser-based version of Redis Insight and lists the features that are available.
9+
hideListLinks: true
10+
linkTitle: Redis Insight on Redis Cloud
11+
weight: 1
12+
---
13+
14+
[Redis Insight]({{< relref "/develop/tools/insight" >}}) is a free Redis GUI that lets you visualize your Redis data and learn more about Redis.
15+
16+
You can either [install Redis Insight]({{< relref "/develop/tools/insight" >}}) on your computer, or you can open your database in Redis Insight directly on Redis Cloud.
17+
18+
{{< note >}}
19+
Opening your database with Redis Insight on Redis Cloud is only available for Essentials databases hosted on AWS. For all other databases, [install Redis Insight]({{< relref "/develop/tools/insight" >}}) on your computer and [open Redis Insight]({{< relref "/operate/rc/databases/connect#ri-app" >}}) from the database page.
20+
{{< /note >}}
21+
22+
To open your database with Redis Insight on Redis Cloud, select **Open with Redis Insight** on the [database screen]({{< relref "/operate/rc/databases/view-edit-database" >}}).
23+
24+
{{<image filename="images/rc/rc-ri-open.png" alt="Open with Redis Insight" width=200px >}}
25+
26+
Redis Insight will open in a new tab.
27+
28+
This browser-based version of Redis Insight has a subset of the features of Redis Insight. For other Redis Insight features, [install Redis Insight]({{< relref "/develop/tools/insight" >}}) on your computer and [open Redis Insight]({{< relref "/operate/rc/databases/connect#ri-app" >}}) from the database page.
29+
30+
## Browser
31+
32+
The **Browser** lets you browse, filter, and visualize your Redis data structures.
33+
34+
- [CRUD](https://en.wikipedia.org/wiki/Create,_read,_update_and_delete) support for lists, hashes, strings, sets, sorted sets, streams, and [JSON]({{< relref "/develop/data-types/json/" >}})
35+
- Group keys according to their namespaces
36+
{{<image filename="images/rc/rc-ri-browser-group.png" alt="Keys in a database grouped by namespace." width=50% >}}
37+
- View, validate, and manage your key values in a human-readable format using formatters that prettify and highlight data in different formats (for example, Unicode, JSON, MessagePack, HEX, and ASCII)
38+
{{<image filename="images/rc/rc-ri-browser-view.png" alt="Human-readable view of a hash key." width=50% >}}
39+
40+
If you don't have any Redis data yet, you can select **Load sample data** to add sample data into your database.
41+
42+
{{<image filename="images/rc/rc-ri-load-data.png" alt="Load Sample Data button" width=300px >}}
43+
44+
## CLI and Command Helper
45+
46+
The **CLI** lets you run Redis commands directly.
47+
48+
{{<image filename="images/rc/rc-ri-cli.png" alt="The CLI and command helper" width=75% >}}
49+
50+
The CLI integrates with a **Command Helper** that lets you search and read info about Redis commands.
51+
52+
## Workbench
53+
54+
The **Workbench** is an advanced command line interface with intelligent command auto-complete and complex data visualization support.
55+
56+
{{<image filename="images/rc/rc-ri-workbench.png" alt="The Workbench" width=75% >}}
57+
58+
Select **Explore** to view interactive tutorials to learn more about Redis and tips to improve your database usage.
59+
60+
{{<image filename="images/rc/rc-ri-explore-button.png" alt="The Explore button" width=200px >}}
61+
62+

content/operate/rc/rc-quickstart.md

Lines changed: 32 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,11 +92,40 @@ The connection wizard provides the following database connection methods:
9292
- [Redis client](#using-redis-client) for your preferred programming language
9393

9494

95-
{{<image filename="images/rc/connection-wizard.png" alt="The connection wizard." >}}
95+
{{<image filename="images/rc/connection-wizard.png" alt="The connection wizard." width=500px >}}
9696

9797
### Redis Insight{#using-redisinsight}
9898

99-
[Redis Insight]({{< relref "/develop/tools/insight" >}}) is a free Redis GUI that is available for macOS, Windows, and Linux.
99+
[Redis Insight]({{< relref "/develop/tools/insight" >}}) is a free Redis GUI that lets you visualize your Redis data and learn more about Redis.
100+
101+
You can connect to your database with Redis Insight in two ways:
102+
103+
1. [Open your database in Redis Insight in your browser](#ri-browser).
104+
105+
1. [Download and Install Redis Insight](#ri-app) on Windows, macOS, and Linux.
106+
107+
#### Open in your browser {#ri-browser}
108+
109+
{{< note >}}
110+
Opening your database with Redis Insight in your browser is available for Essentials databases hosted on AWS.
111+
{{< /note >}}
112+
113+
To connect to your database with Redis Insight in your browser, select **Open with Redis Insight**.
114+
115+
{{<image filename="images/rc/rc-ri-open.png" alt="Open with Redis Insight" width=200px >}}
116+
117+
Redis Insight will open in a new tab.
118+
119+
From there, you can:
120+
121+
- Select **Load sample data** to add sample data into your database.
122+
{{<image filename="images/rc/rc-ri-load-data.png" alt="Load Sample Data button" width=300px >}}
123+
- Select **Explore** to learn how to use Redis.
124+
{{<image filename="images/rc/rc-ri-explore-icon.png" alt="The Explore icon" >}}
125+
126+
For more info on how to use Redis Insight in your browser, see [Open with Redis Insight on Redis Cloud]({{< relref "/operate/rc/databases/connect/insight-cloud" >}}).
127+
128+
#### Install and open on your computer {#ri-app}
100129

101130
1. In the connection wizard, under **Redis Insight**, select **Download** to download Redis Insight.
102131

@@ -122,7 +151,7 @@ The connection wizard provides code snippets to connect to your database with th
122151
- Go using [go-redis]({{< relref "/develop/clients/go" >}})
123152
- PHP using [Predis]({{< relref "/develop/clients/php" >}})
124153

125-
{{<image filename="images/rc/connection-wizard-clients.png" alt="The connection wizard clients." >}}
154+
{{<image filename="images/rc/connection-wizard-clients.png" alt="The connection wizard clients." width=500px >}}
126155

127156
See [Clients]({{< relref "/develop/clients" >}}) to learn how to connect with the official Redis clients.
128157

42.2 KB
Loading
26.6 KB
Loading

static/images/rc/rc-ri-cli.png

35.4 KB
Loading
2.27 KB
Loading
336 Bytes
Loading
2.26 KB
Loading

static/images/rc/rc-ri-open.png

1.71 KB
Loading

0 commit comments

Comments
 (0)