Skip to content

Commit ff72168

Browse files
committed
debranding /explore/redisinsight/redisearch
1 parent d840630 commit ff72168

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

docs/explore/redisinsight/redisearch/index-redisearch.mdx

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
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
55
slug: /explore/redisinsight/redisearch
66
authors: [ajeet]
77
---
@@ -10,7 +10,7 @@ import Authors from '@theme/Authors';
1010

1111
<Authors frontMatter={frontMatter} />
1212

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
1414

1515
- Multi-line for building queries
1616
- 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
2323
- Pagination
2424
- Counting
2525

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.
2727

2828
### Step 1. Create Redis database
2929

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
3131

3232
## Step 2: Download RedisInsight
3333

@@ -51,7 +51,7 @@ Let us begin with OpenBeerDB sample dataset.
5151

5252
### Step 3. OpenBeerDB sample dataset
5353

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)
5555

5656
![alt_text](images/image2.png)
5757

@@ -76,11 +76,11 @@ $ python3 import.py --url redis://localhost:6379
7676
Importing categories…
7777
Importing styles...
7878
Importing breweries...
79-
Adding beer data to RediSearch..
79+
Adding beer data to Redis Search..
8080
8181
```
8282

83-
### Step 6: Choose “RediSearch” under RedisInsight browser tool
83+
### Step 6: Choose “Redis Search” under RedisInsight browser tool
8484

8585
![alt_text](images/image3.png)
8686

@@ -106,7 +106,7 @@ You can download the data in CSV format.
106106

107107
#### Query: All beers with ABV higher than 5% but lower than 6%
108108

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
110110

111111
![alt_text](images/image9.png)
112112

@@ -140,7 +140,7 @@ Let us look at Movie sample dataset too.
140140

141141
### Step 8. Create Redis database
142142

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
144144

145145
### Step 9. Install RedisInsight
146146

@@ -179,7 +179,7 @@ For example:
179179

180180
and for the movies information you should use a Redis [Hash](https://redis.io/topics/data-types#hashes).
181181

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.
183183

184184
### Step 11. Insert Movies
185185

@@ -228,15 +228,15 @@ One option, would be to read all the movies, check all fields and then return on
228228

229229
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.
230230

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.
232232

233-
### Step 12. RediSearch & Indexing
233+
### Step 12. Redis Search & Indexing
234234

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)
236236

237-
![Secondary Index](https://github.com/RediSearch/redisearch-getting-started/blob/master/docs/images/secondary-index.png?raw=true)
237+
![Secondary Index](https://github.com/Redis Search/redisearch-getting-started/blob/master/docs/images/secondary-index.png?raw=true)
238238

239-
Using RediSearch if you want to query on a field, you must first index that field. Let's start by indexing the following fields for our movies:
239+
Using Redis Search if you want to query on a field, you must first index that field. Let's start by indexing the following fields for our movies:
240240

241241
- Title
242242
- Release Year
@@ -346,8 +346,8 @@ The FT.SEARCH syntax has two ways to query numeric fields:
346346

347347
### Additional Links
348348

349-
- [RediSearch Project](https://oss.redis.com/redisearch/)
350-
- [RediSearch Tutorial](/howtos/redisearch)
349+
- [Redis Search Project](https://oss.redis.com/redisearch/)
350+
- [Redis Search Tutorial](/howtos/redisearch)
351351
- [Getting Started with Movie Database](/howtos/moviesdatabase/getting-started)
352352
- [Slowlog Configuration using RedisInsight](/explore/redisinsight/slowlog)
353353
- [Memory Analysis using RedisInsight](/explore/redisinsight/memoryanalyzer)

0 commit comments

Comments
 (0)