Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/create/aws/chatapp/index-chatapp.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Choose AWS as the Cloud vendor while creating your new subscription. While creat

![image](chatapp4.png)

:::info TIP
:::tip
You don't need to create an AWS account for setting up your Redis database. Redis Enterprise Cloud on AWS is a fully managed database-as-a-service trusted by thousands of customers for high performance, infinite scalability, true high availability, and best-in-class support.
:::

Expand Down
2 changes: 1 addition & 1 deletion docs/create/aws/redis-on-aws/index-redis-on-aws.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Follow the below steps to setup Redis Enterprise Cloud hosted over AWS Cloud:

Create your free <a href="https://redis.com/try-free/" target="_blank" rel="noopener">Redis Enterprise Cloud account</a>. Once you click on “Get Started”, you will receive an email with a link to activate your account and complete your signup process.

:::info TIP
:::tip
For a limited time, use **TIGER200** to get **$200** credits on Redis Enterprise Cloud and try all the advanced capabilities!

:tada: [Click here to sign up](https://redis.com/try-free)
Expand Down
6 changes: 5 additions & 1 deletion docs/create/aws/slackbot/index-slackbot.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,11 @@ You can find the suitable release from [http://www.graphicsmagick.org/download.h

#### Nodejs

Note: Please follow all the steps in [python-backend/README.md](https://github.com/redis-developer/Reeko-Slack-Bot/blob/master/python-backend/README.md) first.
:::note

Please follow all the steps in [python-backend/README.md](https://github.com/redis-developer/Reeko-Slack-Bot/blob/master/python-backend/README.md) first.

:::

Copy the AWS credentials from the [python-backend/.env](https://github.com/redis-developer/Reeko-Slack-Bot/blob/master/python-backend/README.md) to the [config.json](https://github.com/redis-developer/Reeko-Slack-Bot/blob/master/nodejs-backend/src/config/config.json) file.

Expand Down
6 changes: 5 additions & 1 deletion docs/create/aws/terraform/index-terraform.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,11 @@ Within the block body (between { and }) are query constraints defined by the dat

In order to set up authentication with the Redis Enterprise Cloud provider, a programmatic API key must be generated for Redis Enterprise Cloud. The Redis Enterprise Cloud documentation contains the most up-to-date instructions for creating and managing your key(s) and IP access.

Please note that Flexible and Annual Redis Enterprise Cloud subscriptions can leverage a RESTful API that permits operations against a variety of resources, including servers, services, and related infrastructure. The REST API is not supported for Fixed or Free subscriptions.
:::note

Flexible and Annual Redis Enterprise Cloud subscriptions can leverage a RESTful API that permits operations against a variety of resources, including servers, services, and related infrastructure. The REST API is not supported for Fixed or Free subscriptions.

:::

```
provider "rediscloud" { } # Example resource configuration
Expand Down
6 changes: 5 additions & 1 deletion docs/create/azure/portal/index-azure-portal.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,11 @@ sudo redis-cli -h demos.redis.cache.windows.net -p 6379
demos.redis.cache.windows.net:6379>
```

Please note that you can have multiple clients connected to a Redis database at the same time. The above Redis client command might require a password if you have setup authentication in your Redis configuration file. You can insert data to Redis using the `SET` command and then fetch it back with the `GET` command. You can also run the Redis `INFO` command to get the statistics about the health of the Redis server (for example, memory usage, Redis server load etc).
:::tip

You can have multiple clients connected to a Redis database at the same time. The above Redis client command might require a password if you have setup authentication in your Redis configuration file. You can insert data to Redis using the `SET` command and then fetch it back with the `GET` command. You can also run the Redis `INFO` command to get the statistics about the health of the Redis server (for example, memory usage, Redis server load etc).

:::

### Resources

Expand Down
10 changes: 8 additions & 2 deletions docs/create/cloudrun/index-cloudrun.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ In this tutorial, you will learn how to deploy a simple Redis rate limiting appl

Visit [developer.redis.com/create/rediscloud/](https://developer.redis.com/create/rediscloud/) and create [a free Redis Enterprise Cloud account](https://redis.com/try-free/). Once you complete the signup tutorial, you will be provided with the database endpoint URL, port and password. Save these for future reference.

:::info TIP
:::tip

For a limited time, use **TIGER200** to get **$200** credits on Redis Enterprise Cloud and try all the advanced capabilities!

:tada: [Click here to sign up](https://redis.com/try-free)
Expand Down Expand Up @@ -219,7 +220,12 @@ Last updated on 2022-02-19T02:50:03.100357Z by ajeet.raina@redis.com:
### Step 8. Access your app

Wait for the build and deploy to complete. When finished, a message with unique URL will be displayed.
Please note that the URL shown in your case will be different from the one shown below:

:::note

The URL shown in your case will be different from the one shown below.

:::

Open [https://django-redis-rate-limiting-example-opcboau66a-de.a.run.app/](https://django-redis-rate-limiting-example-opcboau66a-de.a.run.app/) and access your app.

Expand Down
8 changes: 6 additions & 2 deletions docs/create/docker/redis-on-docker/index-redis-on-docker.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,11 @@ If you're new, refer https://docs.docker.com/docker-for-mac/install/ to install

To pull and start the Redis Enterprise Software Docker container, run this docker run command in the terminal or command-line for your operating system.

Note: On Windows, make sure Docker is configured to run Linux-based containers.
:::note

On Windows, make sure Docker is configured to run Linux-based containers.

:::

```
docker run -d --cap-add sys_resource --name rp -p 8443:8443 -p 9443:9443 -p 12000:12000 redislabs/redis
Expand Down Expand Up @@ -116,7 +120,7 @@ If you don’t have redis-cli installed locally, you can run it from the Docker
docker exec -it redis-stack redis-cli
```

:::info TIP
:::tip
The `docker run` command above also exposes RedisInsight on port 8001. You can use RedisInsight by pointing your browser to http://localhost:8001.
:::

Expand Down
6 changes: 5 additions & 1 deletion docs/create/from-source/index-from-source.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,11 @@ Install the Redis server by running the following command:
$ redis-server
```

Please note that you don't need to restart the Redis service.
:::note

You don't need to restart the Redis service.

:::

### Step 3: Interacting with Redis Client

Expand Down
17 changes: 14 additions & 3 deletions docs/create/heroku/herokugo/index-herokugo.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Heroku recognizes an app as being written in Go by the existence of a `go.mod` f
Create your free Redis Enterprise Cloud account by visiting [this link](https://redis.com/try-free).
Creating a Heroku account is free of charge.

:::info TIP
:::tip
For a limited time, use **TIGER200** to get **$200** credits on Redis Enterprise Cloud and try all the advanced capabilities!

:tada: [Click here to sign up](https://redis.com/try-free)
Expand Down Expand Up @@ -116,7 +116,12 @@ To https://git.heroku.com/stark-island-03510
### Step 8. Accessing the application

Open `https://stark-island-03510.herokuapp.com/` to access your web application on the browser.
Please note that the Web URL is unique, hence it will be different in your case.

:::note

The Web URL is unique, hence it will be different in your case.

:::

![heroku](heroku_chatapp_go.png)

Expand Down Expand Up @@ -213,7 +218,13 @@ The data is method-specific information. In the example above it's related to th

Redis is used mainly as a database to keep the user/messages data and for sending messages between connected servers.

The real-time functionality is handled by Socket.IO for server-client messaging. Additionally each server instance subscribes to the `MESSAGES` pub/sub channel and dispatches messages once they arrive. Note that, the server transports pub/sub messages with a separate event stream (handled by Server Sent Events), this is due to the need to run the pub/sub message loop separately from socket.io signals.
The real-time functionality is handled by Socket.IO for server-client messaging. Additionally each server instance subscribes to the `MESSAGES` pub/sub channel and dispatches messages once they arrive.

:::note

The server transports pub/sub messages with a separate event stream (handled by Server Sent Events), this is due to the need to run the pub/sub message loop separately from socket.io signals.

:::

The chat data is stored in various keys and various data types.
User data is stored in a hash where each user entry contains the next values:
Expand Down
2 changes: 1 addition & 1 deletion docs/create/heroku/herokujava/index-herokujava.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Some of the notable benefits of Heroku include:

Create your free Redis Enterprise Cloud account by visiting [this link](https://redis.com/try-free)

:::info TIP
:::tip
For a limited time, use **TIGER200** to get **$200** credits on Redis Enterprise Cloud and try all the advanced capabilities!

:tada: [Click here to sign up](https://redis.com/try-free)
Expand Down
2 changes: 1 addition & 1 deletion docs/create/heroku/herokunodejs/index-herokunodejs.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Heroku is a platform as a service (PaaS) that enables developers to build, run,

Create your free Redis Enterprise Cloud account by visiting [this link](https://redis.com/try-free)

:::info TIP
:::tip
For a limited time, use **TIGER200** to get **$200** credits on Redis Enterprise Cloud and try all the advanced capabilities!

:tada: [Click here to sign up](https://redis.com/try-free)
Expand Down
2 changes: 1 addition & 1 deletion docs/create/heroku/herokupython/index-herokupython.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Redis Enterprise Cloud is a fully managed cloud service by Redis. Built for mode

Create your free Redis Enterprise Cloud account by visiting [this link](https://redis.com/try-free)

:::info TIP
:::tip
For a limited time, use **TIGER200** to get **$200** credits on Redis Enterprise Cloud and try all the advanced capabilities!

:tada: [Click here to sign up](https://redis.com/try-free)
Expand Down
9 changes: 7 additions & 2 deletions docs/create/heroku/herokuruby/index-herokuruby.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Here's a quickstart guide to deploy Ruby apps on Heroku using Redis. We will be

Create your free Redis Enterprise Cloud account by visiting [this link](https://redis.com/try-free).

:::info TIP
:::tip
For a limited time, use **TIGER200** to get **$200** credits on Redis Enterprise Cloud and try all the advanced capabilities!

:tada: [Click here to sign up](https://redis.com/try-free)
Expand Down Expand Up @@ -103,7 +103,12 @@ To https://git.heroku.com/thawing-shore-07338.git
### Step 8. Accessing the application

Open https://thawing-shore-07338.herokuapp.com/ to access your application on the browser.
Please note that the Web URL is unique, hence it will be different in your case.

:::note

The Web URL is unique, hence it will be different in your case.

:::

![heroku](heroku_leaderboard_ruby.png)

Expand Down
18 changes: 14 additions & 4 deletions docs/create/heroku/portal/index-heroku.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ You can quickly and easily get your apps up and running with Redis Enterprise Cl

Create your free Redis Enterprise Cloud account by visiting [this link](https://redis.com/try-free)

:::info TIP
:::tip
For a limited time, use **TIGER200** to get **$200** credits on Redis Enterprise Cloud and try all the advanced capabilities!

:tada: [Click here to sign up](https://redis.com/try-free)
Expand Down Expand Up @@ -96,7 +96,13 @@ Run the commands below to get a functioning Git repository that contains a simpl

#### Step 6. Setting up environment variables

[Follow this link to create a Redis Enterprise Cloud](/create/rediscloud) subscription and database connection as shown below: Go to the Heroku dashboard, click "Settings" and set `REDIS_URL` and `REDIS_PASSWORD` under the Config Vars. (Please note that the Redis URL endpoint is unique and might be different in your case. Please enter the values accordingly)
[Follow this link to create a Redis Enterprise Cloud](/create/rediscloud) subscription and database connection as shown below: Go to the Heroku dashboard, click "Settings" and set `REDIS_URL` and `REDIS_PASSWORD` under the Config Vars.

:::note

The Redis URL endpoint is unique and might be different in your case. Please enter the values accordingly

:::

Refer to [Step 1](/create/heroku/portal#step-1-create-redis-enterprise-cloud) for the correct values to use.

Expand Down Expand Up @@ -140,8 +146,10 @@ Check the logs:

#### Using Heroku CLI

:::important
:::note

Please note that this method won't allow you to choose Redis Modules while creating your Redis database. Also, it doesn't provide you with the flexibility to choose the Cloud platform of your choice. It is recommended to use Redis Enterprise Cloud directly. [Click here to learn more](/create/rediscloud).

:::

In this section, we will create a Heroku account, use the Heroku CLI to login and add Redis Enterprise Cloud as an add-on.
Expand Down Expand Up @@ -248,8 +256,10 @@ Open https://lit-island-48230.herokuapp.com/ and access the rate limiting app.

#### Using Heroku Dashboard

:::important
:::note

Please note that this method won't allow you to choose Redis Modules while creating a Redis database. Also, it doesn't provide you with the flexibility to choose the Cloud platform of your choice. It is recommended to use Redis Enterprise Cloud directly. [Click here to learn more](/create/rediscloud).

:::

#### Step 1: Sign up for a Heroku account
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ In this tutorial, we will see how to deploy Rate Limiting using Redis and Go.

Create your free Redis Enterprise Cloud account by visiting [this link](https://redis.com/try-free)

:::info TIP
:::tip
For a limited time, use **TIGER200** to get **$200** credits on Redis Enterprise Cloud and try all the advanced capabilities!

:tada: [Click here to sign up](https://redis.com/try-free)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ Kubernetes makes physical storage devices available to your cluster in the form

An Operator is basically an application-specific controller that can help you manage a Kubernetes application. It is a way to package, run, and maintain a Kubernetes application. It is designed to extend the capabilities of Kubernetes, and also simplify application management. This is especially useful for stateful applications, which include persistent storage and other elements external to the application, and may require extra work to manage and maintain.

:::info TIP
:::tip
The Operator Framework is an open source project that provides developer and runtime Kubernetes tools, enabling you to accelerate the development of an operator.
[Learn more about operator framework here](https://operatorframework.io/)
:::
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ In this tutorial, you will see how to deploy a simple Redis caching app built wi

Visit [https://developer.redis.com/create/rediscloud/](https://developer.redis.com/create/rediscloud/) and create a free Redis Enterprise Cloud account. Enable the “RediSearch” module while you create the Redis Enterprise Cloud database. Once you complete the tutorial, you will be provided with the database Endpoint URL and password. Save it for future reference.

:::info TIP
:::tip
For a limited time, use **TIGER200** to get **$200** credits on Redis Enterprise Cloud and try all the advanced capabilities!

:tada: [Click here to sign up](https://redis.com/try-free)
Expand Down
6 changes: 5 additions & 1 deletion docs/create/redis-functions/index-redis-functions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,11 @@ Alternatively, you can spin up a Docker container with Redis Stack:
$ docker run -p 6379:6379 --name redis-7.0 -it --rm redis/redis-stack:7.0.0-RC4
```

> Note: In the rest of this tutorial we’ll use the `$` character to indicate that the command needs to be run on the command prompt and `redis-cli>` to indicate the same for a redis-cli prompt.\_
:::note

In the rest of this tutorial we’ll use the `$` character to indicate that the command needs to be run on the command prompt and `redis-cli>` to indicate the same for a redis-cli prompt.

:::

### Warm-Up

Expand Down
8 changes: 4 additions & 4 deletions docs/create/redis-stack/index-redis-stack.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ The Redis OM client libraries let you use the document modeling, indexing, and q

Create your free <a href="https://redis.com/try-free/" target="_blank" rel="noopener">Redis Enterprise Cloud account</a>. Once you click on “Get Started”, you will receive an email with a link to activate your account and complete your signup process.

:::info TIP
:::tip
For a limited time, use **TIGER200** to get **$200** credits on Redis Enterprise Cloud and try all the advanced capabilities!

:tada: [Click here to sign up](https://redis.com/try-free)
Expand All @@ -77,7 +77,7 @@ For a limited time, use **TIGER200** to get **$200** credits on Redis Enterprise
For the cloud provider, select your preferred cloud.
Select the region of your choice and then click "Let's start free".

:::info TIP
:::tip
If you want to create a custom database with your preferred name and type of Redis,
click "Create a custom database".
:::
Expand Down Expand Up @@ -178,7 +178,7 @@ This will install all Redis and Redis Stack binaries. How you run these binaries
🍺 redis-stack was successfully installed!
```

:::info TIP
:::tip

If this is the first time you’ve installed Redis on your system, then all Redis Stack binaries will be installed and on your path. On M1 Macs, this assumes that `/opt/homebrew/bin` is in your path. On Intel-based Macs, `/usr/local/bin` should be in the path.

Expand Down Expand Up @@ -288,7 +288,7 @@ If you don’t have redis-cli installed locally, you can run it from the Docker
docker exec -it redis-stack redis-cli
```

:::info TIP
:::tip
The `docker run` command above also exposes RedisInsight on port 8001. You can use RedisInsight by pointing your browser to http://localhost:8001.
:::

Expand Down
4 changes: 2 additions & 2 deletions docs/create/rediscloud/index-recloud.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Redis Enterprise Cloud is a fully managed cloud service by Redis. Built for mode

Create your free <a href="https://redis.com/try-free/" target="_blank" rel="noopener">Redis Enterprise Cloud account</a>. Once you click on “Get Started”, you will receive an email with a link to activate your account and complete your signup process.

:::info TIP
:::tip
For a limited time, use **TIGER200** to get **$200** credits on Redis Enterprise Cloud and try all the advanced capabilities!

:tada: [Click here to sign up](https://redis.com/try-free)
Expand All @@ -27,7 +27,7 @@ For a limited time, use **TIGER200** to get **$200** credits on Redis Enterprise

Choose your preferred cloud vendor. Select the region and then click "Let's start free" to create your free database automatically.

:::info TIP
:::tip
If you want to create a custom database with your preferred name and type of Redis,
click "Create a custom database" option shown in the image.
:::
Expand Down
2 changes: 1 addition & 1 deletion docs/create/vercel/index-vercel.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ In this tutorial, you will learn how to deploy a Node.js based Redis chat applic

Visit [developer.redis.com/create/rediscloud/](https://developer.redis.com/create/rediscloud/) and create [a free Redis Enterprise Cloud account](https://redis.com/try-free/). Once you complete this tutorial, you will be provided with the database endpoint URL and password. Save it for future reference.

:::info TIP
:::tip
For a limited time, use **TIGER200** to get **$200** credits on Redis Enterprise Cloud and try all the advanced capabilities!

:tada: [Click here to sign up](https://redis.com/try-free)
Expand Down
12 changes: 10 additions & 2 deletions docs/create/windows/index-windows.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,11 @@ Installing Redis is simple and straightforward. The following example works with
sudo apt-get install redis-server
```

Please note that the `sudo` command might or mightn't be required based on the user configuration of your system.
:::note

The `sudo` command may or may not be required based on the user configuration of your system.

:::

### Step 4: Restart the Redis server

Expand All @@ -64,7 +68,11 @@ Use the `redis-cli` command to test connectivity to the Redis database.
"Jane"
```

Please note: By default, Redis has 0-15 indexes for databases, you can change that number databases NUMBER in redis.conf.
:::note

By default, Redis has 0-15 indexes for databases, you can change that number databases NUMBER in redis.conf.

:::

### Step 6: Stop the Redis Server

Expand Down
2 changes: 1 addition & 1 deletion docs/develop/deno/index-deno.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ In order to use Redis with Deno you will need a Deno Redis client. In the follow

Visit [developer.redis.com/create/rediscloud/](/create/rediscloud/) and create [a free Redis Enterprise Cloud account](https://redis.com/try-free/). Once you complete this tutorial, you will be provided with the database endpoint URL and password. Save it for future reference.

:::info TIP
:::tip
For a limited time, use **TIGER200** to get **$200** credits on Redis Enterprise Cloud and try all the advanced capabilities!

:tada: [Click here to sign up](https://redis.com/try-free)
Expand Down
Loading