Skip to content

Commit 6aef864

Browse files
committedMay 7, 2021
Updated
1 parent 8cdbe20 commit 6aef864

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed
 

‎docs/create/windows/index-windows.mdx

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: index-windows
33
title: Create Redis database on Microsoft Windows 10
4-
sidebar_label: Redis on Microsoft Windows 10
4+
sidebar_label: Redis on Windows 10
55
slug: /create/windows
66
---
77

@@ -23,13 +23,13 @@ In Windows 10, Microsoft replaces Command Prompt with PowerShell as the default
2323

2424
Reboot Windows after making the change—note that you only need to do this one time.
2525

26-
### Step 2: launch Microsoft Windows Store to download Ubuntu distribution
26+
### Step 2: Launch Microsoft Windows Store to download Ubuntu distribution
2727

2828
```powershell
2929
start ms-windows-store:
3030
```
3131

32-
### Step 3: Launch the installed distribution using Windows Store
32+
### Step 3: Install Redis
3333

3434
The following example works with Ubuntu (you’ll need to wait for initialization and create a login upon first use):
3535

@@ -47,7 +47,7 @@ The following example works with Ubuntu (you’ll need to wait for initializatio
4747
sudo service redis-server restart
4848
````
4949

50-
### Step 5: Verify your Redis server is running
50+
### Step 5: Verify if your Redis server is running
5151

5252
```
5353
$ redis-cli
@@ -56,12 +56,15 @@ The following example works with Ubuntu (you’ll need to wait for initializatio
5656
"Jane"
5757
```
5858
59+
Please note: By default, Redis has 0-15 indexes for databases, you can change that number databases NUMBER in redis.conf.
60+
5961
### Step 6: Stop the Redis Server
6062
6163
```bash
6264
sudo service redis-server stop
6365
```
6466

67+
6568
### References
6669

6770
- [Windows 8.1 for Redis ](https://redislabs.com/blog/redis-on-windows-8-1-and-previous-versions/)

‎docs/develop/node/index-node.mdx

+5-5
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ For your first steps with Node.js and Redis, this article will show how to use t
3030
<TabItem value="ioredis">
3131

3232

33-
### Step 1. Install the ioredis library using `npm` (or `yarn`)
33+
#### Step 1. Install the ioredis library using `npm` (or `yarn`)
3434

3535
```bash
3636
npm install ioredis
3737
```
3838

3939

40-
### Step 2. Write your application code
40+
#### Step 2. Write your application code
4141

4242
```javascript
4343
const Redis = require("ioredis");
@@ -66,14 +66,14 @@ Find more information about Redis & io-redis connections in the "[Redis Connect]
6666
<TabItem value="node_redis">
6767

6868

69-
### Step 1. Install the Redis library using `npm` (or `yarn`)
69+
#### Step 1. Install the Redis library using `npm` (or `yarn`)
7070

7171
```bash
7272
npm install redis
7373
```
7474

7575

76-
### Step 2. Write your application code
76+
#### Step 2. Write your application code
7777

7878
```javascript
7979
const redis = require("redis");
@@ -113,7 +113,7 @@ Find more information about Redis & node-redis connections in the "[Redis Connec
113113

114114
---
115115

116-
### More developer resources
116+
### More Developer Resources
117117

118118
<div class="row">
119119

0 commit comments

Comments
 (0)
Please sign in to comment.