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
Copy file name to clipboardExpand all lines: docs/explore/redisinsight/redisearch/index-redisearch.mdx
+18-18Lines changed: 18 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
id: index-redisearch
3
-
title: Perform Database Search and Analytics using RediSearch Browser Tool
4
-
sidebar_label: Perform Database Search and Analytics using RediSearch Browser Tool
3
+
title: Perform Database Search and Analytics using Redis Search Browser Tool
4
+
sidebar_label: Perform Database Search and Analytics using Redis Search Browser Tool
5
5
slug: /explore/redisinsight/redisearch
6
6
authors: [ajeet]
7
7
---
@@ -10,7 +10,7 @@ import Authors from '@theme/Authors';
10
10
11
11
<AuthorsfrontMatter={frontMatter} />
12
12
13
-
A full-featured pure desktop GUI client, RedisInsight supports RediSearch. [RediSearch](https://oss.redis.com/redisearch/) is a powerful indexing, querying, and full-text search engine for Redis. It is one of the most mature and feature-rich Redis modules.With RedisInsight, the below functionalities are possible
13
+
A full-featured pure desktop GUI client, RedisInsight supports Redis Search. [Redis Search](https://redis.io/docs/stack/search/) is a powerful indexing, querying, and full-text search engine for Redis. It is one of the most mature and feature-rich Redis modules.With RedisInsight, the below functionalities are possible
14
14
15
15
- Multi-line for building queries
16
16
- Added ability to submit query with ‘ctrl + enter’ in single line mode
@@ -23,11 +23,11 @@ A full-featured pure desktop GUI client, RedisInsight supports RediSearch. [Redi
23
23
- Pagination
24
24
- Counting
25
25
26
-
RediSearch allows you to quickly create indexes on datasets (Hashes), and uses an incremental indexing approach for rapid index creation and deletion. The indexes let you query your data at lightning speed, perform complex aggregations, and filter by properties, numeric ranges, and geographical distance.
26
+
Redis Search allows you to quickly create indexes on datasets (Hashes), and uses an incremental indexing approach for rapid index creation and deletion. The indexes let you query your data at lightning speed, perform complex aggregations, and filter by properties, numeric ranges, and geographical distance.
27
27
28
28
### Step 1. Create Redis database
29
29
30
-
[Follow this link to create Redis Stack database](/create/redis-stack) that comes with RediSearch module enabled
30
+
[Follow this link to create Redis Stack database](/create/redis-stack) that comes with Redis Search
31
31
32
32
## Step 2: Download RedisInsight
33
33
@@ -51,7 +51,7 @@ Let us begin with OpenBeerDB sample dataset.
51
51
52
52
### Step 3. OpenBeerDB sample dataset
53
53
54
-
To demonstrate RediSearch, we will use OpenbeerDB dataset. The dataset is available publicly for general public under [openbeerdb.com](https://openbeerdb.com)
54
+
To demonstrate Redis Search, we will use OpenbeerDB dataset. The dataset is available publicly for general public under [openbeerdb.com](https://openbeerdb.com)
### Step 6: Choose “RediSearch” under RedisInsight browser tool
83
+
### Step 6: Choose “Redis Search” under RedisInsight browser tool
84
84
85
85

86
86
@@ -106,7 +106,7 @@ You can download the data in CSV format.
106
106
107
107
#### Query: All beers with ABV higher than 5% but lower than 6%
108
108
109
-
The beers are added to the RediSearch index weighted by ABV. So by default, the results will be ordered by ABV highest to lowest. Both ABV and IBU are sortable, so you can order results by either of these fields using sortby in the query
109
+
The beers are added to the Redis Search index weighted by ABV. So by default, the results will be ordered by ABV highest to lowest. Both ABV and IBU are sortable, so you can order results by either of these fields using sortby in the query
110
110
111
111

112
112
@@ -140,7 +140,7 @@ Let us look at Movie sample dataset too.
140
140
141
141
### Step 8. Create Redis database
142
142
143
-
[Follow this link to create Redis Stack database using Docker container](/create/redis-stack) that comes with RediSearch module enabled
143
+
[Follow this link to create Redis Stack database using Docker container](/create/redis-stack) that comes with Redis Search module enabled
144
144
145
145
### Step 9. Install RedisInsight
146
146
@@ -179,7 +179,7 @@ For example:
179
179
180
180
and for the movies information you should use a Redis [Hash](https://redis.io/topics/data-types#hashes).
181
181
182
-
A Redis Hash allows the application to structure all the movie attributes in individual fields; also RediSearch will index the fields based on the index definition.
182
+
A Redis Hash allows the application to structure all the movie attributes in individual fields; also Redis Search will index the fields based on the index definition.
183
183
184
184
### Step 11. Insert Movies
185
185
@@ -228,15 +228,15 @@ One option, would be to read all the movies, check all fields and then return on
228
228
229
229
Nevertheless this is where Redis developers often create custom secondary indexes using SET/SORTED SET structures that point back to the movie hash. This needs some heavy design and implementation.
230
230
231
-
This is where the RediSearch module can help, and why it was created.
231
+
This is where the Redis Search module can help, and why it was created.
232
232
233
-
### Step 12. RediSearch & Indexing
233
+
### Step 12. Redis Search & Indexing
234
234
235
-
RediSearch greatly simplifies this by offering a simple and automatic way to create secondary indices on Redis Hashes. (more datastructure will eventually come)
235
+
Redis Search greatly simplifies this by offering a simple and automatic way to create secondary indices on Redis Hashes. (more datastructure will eventually come)
0 commit comments