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/redismod/index-redismod.mdx
+10-24Lines changed: 10 additions & 24 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,15 +19,12 @@ import Authors from '@theme/Authors';
19
19
This simple container image bundles together the latest stable releases of Redis and select Redis modules.
20
20
This image is based on the official image of Redis from Docker. By default, the container starts with Redis' default configuration and all included modules loaded.
21
21
22
-
### Modules included in the container
22
+
### Features included in the container
23
23
24
-
-[RediSearch](https://redis.com/modules/redis-search/): a full-featured search engine
25
-
-[RedisGraph](https://redis.com/modules/redis-graph/): a graph database
26
-
-[RedisTimeSeries](https://redis.com/modules/redis-timeseries/): a timeseries database
27
-
-[RedisAI](https://redis.com/modules/redis-ai/): a tensor and deep learning model server
28
-
-[RedisJSON](https://redis.com/modules/redis-json/): a native JSON data type
29
-
-[RedisBloom](https://redis.com/modules/redis-bloom/): native Bloom and Cuckoo Filter data types
30
-
-[RedisGears](https://redis.com/modules/redis-gears/): a dynamic execution framework
24
+
-[Search](https://redis.com/modules/redis-search/): a full-featured search engine
25
+
-[Time Series](https://redis.com/modules/redis-timeseries/): a timeseries database
26
+
-[JSON](https://redis.com/modules/redis-json/): a native JSON data type
27
+
-[Probabilistic data](https://redis.com/modules/redis-bloom/): native Bloom and Cuckoo Filter data types
31
28
32
29
### Step 1. Install Docker
33
30
@@ -70,11 +67,11 @@ Let's try using redis-cli as shown below:
Let us test drive RediSearch modules as discussed below in detail.
72
+
Let us test drive Redis Search as discussed below in detail.
76
73
77
-
#### Insert data into RediSearch
74
+
#### Insert data into Redis Search
78
75
79
76
We are now ready to insert some data. This example uses movies data stored as Redis Hashes, so let’s insert a couple of movies:
80
77
@@ -94,7 +91,7 @@ Your Redis database now contains two Hashes. It is simple to retrieve informatio
94
91
HMGET movies:11002 title rating
95
92
```
96
93
97
-
#### Create an index in RediSearch
94
+
#### Create an index in Redis Search
98
95
99
96
To be able to query the hashes on the field for title, say, or genre, you must first create an index. To create an index, you must define a schema to list the fields and their types that are indexed, and that you can use in your queries.
100
97
@@ -104,7 +101,7 @@ Use the FT.CREATE command to create an index, as shown here:
104
101
FT.CREATE idx:movies ON hash PREFIX 1 "movies:" SCHEMA title TEXT SORTABLE release_year NUMERIC SORTABLE rating NUMERIC SORTABLE genre TAG SORTABLE
105
102
```
106
103
107
-
#### Search the movies in the RediSearch index
104
+
#### Search the movies in the Redis Search index
108
105
109
106
You can now use the FT.SEARCH to search your database, for example, to search all movies sorted by release year:
110
107
@@ -113,14 +110,3 @@ You can now use the FT.SEARCH to search your database, for example, to search al
113
110
```
114
111
115
112
To test drive rest of Redis modules, please visit the links mentioned under "References" section.
116
-
117
-
### References
118
-
119
-
-[Indexing, Querying, and Full-Text Search of JSON Documents with Redis](https://redis.com/blog/index-and-query-json-docs-with-redis/)
0 commit comments