Skip to content

Commit 76d2457

Browse files
authored
Update README.md
1 parent 07f09b8 commit 76d2457

File tree

1 file changed

+95
-3
lines changed

1 file changed

+95
-3
lines changed

README.md

Lines changed: 95 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,100 @@
1-
# Website
1+
# Redis Developer Hub
22

3-
This website is built using [Docusaurus 2](https://v2.docusaurus.io/), a modern static website generator.
3+
Redis Developer Hub is basically a journey carved out for Redis developer community. The journey is defined in terms of "Create > Develop > Explore" . The "Create" section allows you to get started with Redis, creating Redis database locally as well as over Cloud in the form of DBaaS. The "Develop" section allows you to build your app using Redis clients. Finally, the "Explore" section helps you to explore your Redis database using robust tools like RedisInsight, Redis Data Source for Grafana, RIOT and many more...
4+
5+
6+
## Creating Redis database
7+
8+
## Cloud
9+
10+
- [Redis Enterprise Cloud](https://developer.redislabs.com/create/rediscloud)
11+
- [Heroku](https://developer.redislabs.com/create/heroku)
12+
- [Azure Cache](https://developer.redislabs.com/create/azure)
13+
- [Google Cloud](https://developer.redislabs.com/create/gcp)
14+
- [AWS](https://developer.redislabs.com/create/aws)
15+
16+
## Local
17+
18+
- [Docker](https://developer.redislabs.com/create/docker/)
19+
- [Google Kubernetes Engine](https://developer.redislabs.com/create/kubernetes/)
20+
- [Mac using Homebrew](https://developer.redislabs.com/create/homebrew/)
21+
- [Microsoft Windows 10](https://developer.redislabs.com/create/windows)
22+
- [Build from Source](https://developer.redislabs.com/create/from-source/)
23+
- [RedisMod](https://developer.redislabs.com/explore/redismod)
24+
25+
26+
## Developing with Redis Clients
27+
28+
- [Java](https://developer.redislabs.com/develop/java/)
29+
- [Java based application on Heroku using Redis](https://developer.redislabs.com/howtos/herokujava)
30+
- [Python](https://developer.redislabs.com/develop/python/)
31+
- [Python based application on Heroku using Redis](https://developer.redislabs.com/howtos/herokupython)
32+
- [C](https://developer.redislabs.com/develop/C/)
33+
- [NodeJS](https://developer.redislabs.com/develop/nodejs/)
34+
- [NodeJS based application on Heroku using Redis](https://developer.redislabs.com/howtos/herokunodejs)
35+
- [Ruby](https://developer.redislabs.com/develop/ruby/)
36+
- [Php](https://developer.redislabs.com/develop/php/)
37+
38+
## Extensibility via Redis Modules
39+
40+
### RediSearch
41+
42+
- [Getting Started](https://developer.redislabs.com/howtos/redisearch)
43+
- [Building Movie Database app using RediSearch](https://developer.redislabs.com/howtos/moviesdatabase/getting-started)
44+
45+
46+
### RedisJSON
47+
48+
- [Getting Started](https://developer.redislabs.com/howtos/redisjson)
49+
- [How to build a Shopping cart app using NodeJS and RedisJSON](https://developer.redislabs.com/howtos/shoppingcart)
50+
- [HackerNews Clone using RedisJSON](https://developer.redislabs.com/howtos/hackernews)
51+
52+
53+
### RedisGears
54+
55+
- [Getting Started](https://developer.redislabs.com/howtos/redisgears)
56+
- [How to build a Fraud Detection System using RedisGears and RedisBloom](https://developer.redislabs.com/howtos/frauddetection)
57+
- [Building a Pipeline for Natural Language Processing using RedisGears](https://developer.redislabs.com/howtos/nlp)
58+
59+
### RedisGraph
60+
61+
- [Getting Started](https://developer.redislabs.com/howtos/redisgraph)
62+
- [Building Movies database app using RedisGraph and NodeJS](https://developer.redislabs.com/howtos/redisgraphmovies)
63+
64+
### RedisBloom
65+
66+
- [Getting Started](https://developer.redislabs.com/howtos/redisbloom)
67+
- [How to build a Fraud Detection System using RedisGears and RedisBloom](https://developer.redislabs.com/howtos/frauddetection)
68+
69+
### RedisTimeSeries
70+
71+
- [Getting Started](https://developer.redislabs.com/howtos/redistimeseries)
72+
- [How to Manage IoT Sensor data using RedisTimeSeries](https://redislabs.com/blog/how-to-manage-real-time-iot-sensor-data-in-redis/)
73+
74+
### RedisAI
75+
76+
- [Getting Started](https://developer.redislabs.com/howtos/redisai)
77+
78+
79+
### RedisInsight - Redis GUI
80+
81+
- [Getting Started](https://developer.redislabs.com/explore/redisinsight/getting-started)
82+
- [Visualize Redis database keys using RedisInsight Browser Tool](https://developer.redislabs.com/explore/redisinsight/browser)
83+
- [Debugging Redis using RedisInsight Slowlog Tool](https://developer.redislabs.com/explore/redisinsight/slowlog)
84+
- [Reduce Redis Memory usage using RedisInsight Memory Analyzer Tool](https://developer.redislabs.com/explore/redisinsight/memoryanalyzer)
85+
- [Manage Your Redis Cluster using RedisInsight Cluster Management Tool](https://developer.redislabs.com/explore/redisinsight/cluster)
86+
- [Using Redis Streams](https://developer.redislabs.com/explore/redisinsight/streams)
87+
- [Analyze Your Redis commands using RedisInsight Profiler tool](https://developer.redislabs.com/explore/redisinsight/profiler)
88+
- [Query, Visualize and Manipulate Graphs using RedisGraph Browser Tool](https://developer.redislabs.com/explore/redisinsight/redisgraph)
89+
- [Writing Your Serverless function using RedisGears Browser Tool](https://developer.redislabs.com/explore/redisinsight/redisgears)
90+
- [Managing time-series data using RedisTimeSeries Browser Tool](https://developer.redislabs.com/explore/redisinsight/redistimeseries)
91+
- [Unified Search and Analytics using RediSearch Browser Tool](https://developer.redislabs.com/explore/redisinsight/redisearch)
92+
- [Using Helm](https://developer.redislabs.com/explore/redisinsight/usinghelm)
93+
94+
## How to Contribute
95+
96+
This website is built using [Docusaurus 2](https://v2.docusaurus.io/), a modern static website generator. Follow the below steps to contribute to this developer site:
497

5-
## Installation
698

799
```console
8100
yarn install

0 commit comments

Comments
 (0)