You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you add a Redis database for a particular user using the `username` and `password` fields, that user must be able to run the `INFO` command. See the [access control list (ACL) documentation]({{< relref "/operate/oss_and_stack/management/security/acl" >}}) for more information.
@@ -56,9 +56,15 @@ Currently, Redis Copilot provides two primary features: a general chatbot and a
56
56
57
57
**My data chatbot**: the context-aware chatbot available in Redis Insight lets you construct search queries using everyday language rather than requiring specific programming syntax. This feature lets you query and explore data easily and interactively without extensive technical knowledge.
58
58
59
+
Before you can use Redis Copilot, you must first sign in and accept the terms of use. Click on the Redis Copilot icon in the top right corner of the Redis Insight window to sign in and accept the terms of use.
{{< image filename="images/ri/ri-redis-copilot-signin.png" alt="The Redis Copilot sign in screen" >}}
64
+
59
65
Here's an example of using Redis Copilot to search data using a simple, natural language prompt.
60
66
61
-
<imgsrc="images/copilot-example.png">
67
+
{{< image filename="images/ri/ri-redis-copilot-query.png" alt="An example of using Redis Copilot to search data" >}}
62
68
63
69
See the [Redis Insight Copilot FAQ]({{< relref "/develop/tools/insight/copilot-faq" >}}) for more information.
64
70
@@ -69,45 +75,47 @@ Redis Insight includes Redis Data Integration (RDI) connectivity, which allows y
69
75
### Browser
70
76
71
77
Browse, filter and visualize your key-value Redis data structures.
72
-
*[CRUD](https://en.wikipedia.org/wiki/Create,_read,_update_and_delete) support for lists, hashes, strings, sets, sorted sets, and streams
73
-
* CRUD support for [JSON]({{< relref "/develop/data-types/json/" >}})
74
-
* Group keys according to their namespaces
75
-
76
-
<imgsrc="images/Browser.png">
78
+
*[CRUD](https://en.wikipedia.org/wiki/Create,_read,_update_and_delete) support for lists, hashes, strings, sets, sorted sets, and streams.
79
+
* CRUD support for [JSON]({{< relref "/develop/data-types/json/" >}}).
80
+
* Group keys according to their namespaces.
77
81
78
82
* 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) in the Browser tool.
Analyze every command sent to Redis in real time. To use the profiler, click **Profiler** at the bottom left of the screen. It should reveal the profiler window, and there you can start the profiler by clicking on **Start Profiler**.
The CLI is accessible at any time within the application.
91
-
* Employs integrated help to deliver intuitive assistance
94
+
The CLI is accessible at any time within the application. To use the CLI, click **>_ CLI** at the bottom left of the screen. It should reveal the CLI window, and there you can start typing Redis [commands]({{< relref "/commands" >}}).
95
+
96
+
The CLI includes the following features:
97
+
98
+
* Employs integrated help to deliver intuitive assistance.
92
99
* Use together with a convenient command helper that lets you search and read on Redis commands.
Workbench is an advanced command line interface with intelligent command auto-complete and complex data visualization support.
106
+
99
107
* Built-in guides: you can conveniently discover Redis and Redis Open Source features using the built-in guides.
100
108
* Command auto-complete support for all features in Redis and Redis Open Source.
101
109
* Advanced, schema-aware auto-complete for Redis Query Engine, which provides for faster query building with context-sensitive suggestions that recognize indexes, schemas, and fields based on your current query. Start typing any Redis Query Engine command in to try this feature. See below for an example of an in-progress `FT.SEARCH` command.
102
110
103
-
<imgsrc="images/Workbench_Search.png">
111
+
{{< image filename="images/ri/ri-workbench.png" alt="An example of an in-progress FT.SEARCH command" >}}
104
112
105
113
Workbench also includes:
106
114
107
115
* Visualizations of your indexes, queries, and aggregations.
108
116
* Visualizations of your [time series]({{< relref "/develop/data-types/timeseries/" >}}) data.
109
117
110
-
<imgsrc="images/Workbench_TimeSeries.png">
118
+
{{< image filename="images/ri/ri-workbench-timeseries.png" alt="Visualizations of time series data" >}}
111
119
112
120
## Tools
113
121
@@ -119,21 +127,21 @@ Use the database analysis tool to optimize the performance and memory usage of y
119
127
The database analysis tool will only analyze up to 10,000 keys. If more than 10,000 keys are present, the tool will attempt to use extrapolation in its analysis.
Create and manage streams by adding, removing, and filtering entries per timestamp. To see and work with new entries, enable and customize the automatic refresh rate.
127
135
128
136
View and manage the list of consumer groups. See existing consumers in a given consumer name as well as the last messages delivered to them. Inspect the list of pending messages, explicitly acknowledge the processed items, or claim unprocessed messages via Redis Insight.
If you're using the indexing, querying, or full-text search features of Redis Open Source, Redis Insight provides UI controls to quickly and conveniently run search queries against a preselected index. You can also create a secondary index of your data in a dedicated pane.
@@ -142,13 +150,13 @@ Easily and quickly delete multiple keys of the same type and/or with the same ke
142
150
When the bulk deletion is completed, Redis Insight displays the results of this operation with the number of keys processed and the time taken to delete the keys in bulk.
143
151
Use bulk deletion to optimize the usage of your database based on the results from the Redis database analysis.
The Slow Log tool displays the list of logs captured by the SLOWLOG command to analyze all commands that exceed a specified runtime, which helps with troubleshooting performance issues. Specify both the runtime and the maximum length of Slowlog (which are server configurations) to configure the list of commands logged and set the auto-refresh interval to automatically update the list of commands displayed.
0 commit comments