Skip to content

Commit dd5db35

Browse files
committed
Add tools and guides section and samples
1 parent 964171c commit dd5db35

File tree

6 files changed

+73
-1
lines changed

6 files changed

+73
-1
lines changed

docs/guides/import-data.mdx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
id: import-data
3+
title: Import Data into Redis
4+
sidebar_label: Import Data
5+
slug: /guides/import-data
6+
---

docs/guides/index.mdx

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
---
2+
id: index-guides
3+
title: Guides
4+
sidebar_label: Guides
5+
slug: /guides/index
6+
---
7+
8+
import RedisCard from '@site/src/components/RedisCard';
9+
10+
11+
12+
<div class="row">
13+
14+
<div class="col">
15+
<RedisCard
16+
title="Import Data into Redis"
17+
description="Discover the various options to import data into Redis"
18+
page="import-data"
19+
/>
20+
</div>
21+
22+
<div class="col">
23+
<RedisCard
24+
title="Indexing and Querying"
25+
description="Learn how to query data by values"
26+
page="indexing-querying"
27+
/>
28+
</div>
29+
30+
</div>
31+
32+
<div class="row">
33+
34+
<div class="col">
35+
<RedisCard
36+
title="Security"
37+
description="Introduction and best practises of Redis Security"
38+
page="redis-security"
39+
/>
40+
</div>
41+
42+
<div class="col">
43+
44+
</div>
45+
46+
</div>

docs/guides/indexing-querying.mdx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
id: indexing-querying
3+
title: Indexing and Querying
4+
sidebar_label: Indexin
5+
slug: /guides/indexing-querying
6+
7+
---

docs/guides/redis-security.mdx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
id: redis-security
3+
title: Redis Security
4+
sidebar_label: Indexing
5+
slug: /guides/redis-security
6+
7+
---

docs/tools/index.mdx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
id: index-tools
3+
title: Tools
4+
sidebar_label: Tools
5+
slug: /tools/index
6+
---

sidebars.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ module.exports = {
77
href: '/' // The target URL (string).
88
}],
99
Develop: ['develop/java/index-java', 'develop/node/index-node' ],
10-
Features: ['mdx'],
10+
'Tools & Guides': ['tools/index-tools','guides/index-guides'],
1111
},
1212
};

0 commit comments

Comments
 (0)