Skip to content

Commit 933b544

Browse files
committed
remove the data modeling section and update indexing section - issues #49 #44
1 parent ab3b7ad commit 933b544

File tree

3 files changed

+16
-6
lines changed

3 files changed

+16
-6
lines changed

Diff for: docs/guides/index.mdx

+2-6
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import RedisCard from '@site/src/theme/RedisCard';
2323
<RedisCard
2424
title="Indexing and Querying"
2525
description="Learn how to query data by values"
26-
page="guides/indexing/"
26+
page="/guides/indexing/"
2727
/>
2828
</div>
2929

@@ -40,11 +40,7 @@ import RedisCard from '@site/src/theme/RedisCard';
4040
</div>
4141

4242
<div class="col">
43-
<RedisCard
44-
title="Data Modeling"
45-
description="Data modelinging for Redis"
46-
page="/guides/data-modeling/"
47-
/>
43+
4844
</div>
4945

5046
</div>

Diff for: docs/guides/indexing/indexing-querying.mdx

+14
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,17 @@ You have various ways to create index using Redis core datastructures, for examp
2121
When using these datastructures you must create your own API to keep the index up-to-date. To simplify and automate this task, Redis community has created the RediSearch module that allows indexing and querying.
2222

2323
### Indexing and Querying with RediSearch
24+
25+
The easiest way to index and query data in Redis is to use the [RediSearch](http://redisearch.io/) module.
26+
27+
You can follow the [RediSearch Tutorial](https://github.com/RediSearch/redisearch-getting-started) to learn more about it and look at the following video from Redis University:
28+
29+
<div class="text--center">
30+
<iframe width="672" height="378" src="https://www.youtube.com/embed/B10nHEdW3NA" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
31+
32+
Querying, Indexing, and Full-text Search in Redis
33+
</div>
34+
35+
If you have questions about RediSearch and other module ask them in the [Redis Community Forum](https://forum.redislabs.com/c/modules/redisearch/58).
36+
37+

0 commit comments

Comments
 (0)