Skip to content

Commit 36c239d

Browse files
committed
Remove more instances of Redis Stack
1 parent 75edf8c commit 36c239d

File tree

16 files changed

+20
-22
lines changed

16 files changed

+20
-22
lines changed

content/develop/clients/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ Redis does not document directly:
5757
## Requirements
5858

5959
You will need access to a Redis server to use these libraries.
60-
You can experiment with a local installation of Redis Stack
61-
(see [Install Redis Stack]({{< relref "/operate/oss_and_stack/install/install-stack/" >}})) or with a free trial of [Redis Cloud]({{< relref "/operate/rc" >}}).
60+
You can experiment with a local installation of Redis Community Edition
61+
(see [Install Redis Community Edition]({{< relref "/operate/oss_and_stack/install/install-stack/" >}})) or with a free trial of [Redis Cloud]({{< relref "/operate/rc" >}}).
6262
To interact with a Redis server without writing code, use the
6363
[Redis CLI]({{< relref "/develop/tools/cli" >}}) and
6464
[Redis Insight]({{< relref "/develop/tools/insight" >}}) tools.

content/develop/clients/dotnet/_index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ weight: 3
2020
The sections below explain how to install `NRedisStack` and connect your application
2121
to a Redis database.
2222

23-
`NRedisStack` requires a running Redis or [Redis Stack]({{< relref "/operate/oss_and_stack/install/install-stack/" >}}) server. See [Getting started]({{< relref "/operate/oss_and_stack/install/" >}}) for Redis installation instructions.
23+
`NRedisStack` requires a running [Redis Community Edition]({{< relref "/operate/oss_and_stack/install/install-stack/" >}}) server. See [Getting started]({{< relref "/operate/oss_and_stack/install/" >}}) for Redis installation instructions.
2424

2525
You can also access Redis with an object-mapping client interface. See
2626
[Redis OM for .NET]({{< relref "/integrate/redisom-for-net" >}})
@@ -70,9 +70,9 @@ Console.WriteLine(String.Join("; ", hashFields));
7070
// Prints:
7171
// name: John; surname: Smith; company: Redis; age: 29
7272
```
73-
## Redis Stack modules
73+
## Redis Community Edition modules
7474

75-
To access Redis Stack capabilities, use the appropriate interface like this:
75+
To access Redis Community Edition capabilities, use the appropriate interface like this:
7676

7777
```
7878
IBloomCommands bf = db.BF();

content/develop/clients/dotnet/queryjson.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This example shows how to create a
2020
for [JSON]({{< relref "/develop/data-types/json" >}}) data and
2121
run queries against the index.
2222

23-
Make sure that you have Redis Stack and `NRedisStack` installed.
23+
Make sure that you have Redis Community Edition and `NRedisStack` installed.
2424

2525
Start by importing dependencies:
2626

content/develop/clients/go/_index.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ weight: 7
1919
[`go-redis`](https://github.com/redis/go-redis) is the [Go](https://go.dev/) client for Redis.
2020
The sections below explain how to install `go-redis` and connect your application to a Redis database.
2121

22-
`go-redis` requires a running Redis or
23-
[Redis Stack]({{< relref "/operate/oss_and_stack/install/install-stack/" >}}) server.
22+
`go-redis` requires a running [Redis Community Edition]({{< relref "/operate/oss_and_stack/install/install-stack/" >}}) server.
2423
See [Getting started]({{< relref "/operate/oss_and_stack/install/" >}}) for Redis installation
2524
instructions.
2625

content/develop/clients/go/queryjson.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This example shows how to create a
1919
for [JSON]({{< relref "/develop/data-types/json" >}}) data and
2020
run queries against the index.
2121

22-
Make sure that you have Redis Stack and `go-redis` installed.
22+
Make sure that you have Redis Community Edition and `go-redis` installed.
2323

2424
Start by importing dependencies:
2525

content/develop/clients/jedis/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ a more advanced Java client that also supports asynchronous and reactive connect
2222
The sections below explain how to install `Jedis` and connect your application
2323
to a Redis database.
2424

25-
`Jedis` requires a running Redis or [Redis Stack]({{< relref "/operate/oss_and_stack/install/install-stack/" >}}) server. See [Getting started]({{< relref "/operate/oss_and_stack/install/" >}}) for Redis installation instructions.
25+
`Jedis` requires a running [Redis Community Edition]({{< relref "/operate/oss_and_stack/install/install-stack/" >}}) server. See [Getting started]({{< relref "/operate/oss_and_stack/install/" >}}) for Redis installation instructions.
2626

2727
## Install
2828

content/develop/clients/jedis/queryjson.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This example shows how to create a
2020
for [JSON]({{< relref "/develop/data-types/json" >}}) data and
2121
run queries against the index.
2222

23-
Make sure that you have Redis Stack and `Jedis` installed.
23+
Make sure that you have Redis Community Edition and `Jedis` installed.
2424

2525
Start by importing dependencies:
2626

content/develop/clients/lettuce/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ If you only need synchronous connections then you may find the other Java client
2424
The sections below explain how to install `Lettuce` and connect your application
2525
to a Redis database.
2626

27-
`Lettuce` requires a running Redis or [Redis Stack]({{< relref "/operate/oss_and_stack/install/install-stack/" >}}) server. See [Getting started]({{< relref "/operate/oss_and_stack/install/" >}}) for Redis installation instructions.
27+
`Lettuce` requires a running [Redis Community Edition]({{< relref "/operate/oss_and_stack/install/install-stack/" >}}) server. See [Getting started]({{< relref "/operate/oss_and_stack/install/" >}}) for Redis installation instructions.
2828

2929
## Install
3030

content/develop/clients/nodejs/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ weight: 4
2020
The sections below explain how to install `node-redis` and connect your application
2121
to a Redis database.
2222

23-
`node-redis` requires a running Redis or [Redis Stack]({{< relref "/operate/oss_and_stack/install/install-stack/" >}}) server. See [Getting started]({{< relref "/operate/oss_and_stack/install/" >}}) for Redis installation instructions.
23+
`node-redis` requires a running [Redis Community Edition]({{< relref "/operate/oss_and_stack/install/install-stack/" >}}) server. See [Getting started]({{< relref "/operate/oss_and_stack/install/" >}}) for Redis installation instructions.
2424

2525
You can also access Redis with an object-mapping client interface. See
2626
[RedisOM for Node.js]({{< relref "/integrate/redisom-for-node-js" >}})

content/develop/clients/php/_index.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ The sections below explain how to install `Predis` and connect your application
2424
client library and is not developed or supported directly by Redis.
2525
{{< /note >}}
2626

27-
`Predis` requires a running Redis or
28-
[Redis Stack]({{< relref "/operate/oss_and_stack/install/install-stack/" >}}) server.
27+
`Predis` requires a running [Redis Community Edition]({{< relref "/operate/oss_and_stack/install/install-stack/" >}}) server.
2928
See [Getting started]({{< relref "/operate/oss_and_stack/install/" >}}) for Redis installation
3029
instructions.
3130

0 commit comments

Comments
 (0)