Skip to content

Commit 5609631

Browse files
committed
More edits for CE 8.0
1 parent 643855c commit 5609631

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+143
-167
lines changed

content/develop/connect/clients/dotnet.md

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

22-
`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.
22+
`NRedisStack` requires a running Redis server. See [Getting started]({{< relref "/operate/oss_and_stack/install/" >}}) for Redis Community Edition installation instructions.
2323

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

73-
To access Redis Stack capabilities, use the appropriate interface like this:
73+
To access the advanced data structures capability of Redis Community Edition, use the appropriate interface like this:
7474

7575
```
7676
IBloomCommands bf = db.BF();
@@ -190,7 +190,7 @@ for more information.
190190

191191
This example shows how to convert Redis search results to JSON format using `NRedisStack`.
192192

193-
Make sure that you have Redis Stack and `NRedisStack` installed.
193+
Make sure that you have Redis Community Edition 8.x and `NRedisStack` installed.
194194

195195
Import dependencies and connect to the Redis server:
196196

content/develop/connect/clients/go.md

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

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

2625
## Install

content/develop/connect/clients/java/jedis.md

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

24-
`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.
24+
`Jedis` requires a running Redis server. See [Getting started]({{< relref "/operate/oss_and_stack/install/" >}}) for Redis Community Edition installation instructions.
2525

2626
## Install
2727

content/develop/connect/clients/java/lettuce.md

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

26-
`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.
26+
`Lettuce` requires a running Redis server. See [Getting started]({{< relref "/operate/oss_and_stack/install/" >}}) for Redis Community Edition installation instructions.
2727

2828
## Install
2929

content/develop/connect/clients/nodejs.md

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

22-
`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.
22+
`node-redis` requires a running Redis server. See [Getting started]({{< relref "/operate/oss_and_stack/install/" >}}) for Redis Community Edition installation instructions.
2323

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

content/develop/connect/clients/om-clients/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ categories:
99
- oss
1010
- kubernetes
1111
- clients
12-
description: Object-Mapper libraries for Redis Stack
12+
description: Object-Mapper libraries for Redis Community Edition
1313
linkTitle: Object mapping
1414
stack: true
1515
title: Object-Mapper libraries
1616
weight: 6
1717
---
1818

19-
Redis OM (pronounced *REDiss OHM*) is a library that provides object mapping for Redis. With the help of Redis OM, you can map Redis data types, specifically Hashes and JSON documents, to objects of your preferred programming language or framework. Redis OM relies on Redis Stack's JSON, query, and search features, allowing you to query and search for objects.
19+
Redis OM (pronounced *REDiss OHM*) is a library that provides object mapping for Redis. With the help of Redis OM, you can map Redis data types, specifically Hashes and JSON documents, to objects of your preferred programming language or framework. Redis OM relies on the JSON and Redis Query Engine features of Redis Community Edition, allowing you to search and/or query for objects.
2020

2121
You can use Redis OM with the following four programming languages:
2222

content/develop/connect/clients/python/redis-py.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ weight: 1
1919
The sections below explain how to install `redis-py` and connect your application
2020
to a Redis database.
2121

22-
`redis-py` 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.
22+
`redis-py` requires a running Redis server. See [Getting started]({{< relref "/operate/oss_and_stack/install/" >}}) for Redis Community Edition installation instructions.
2323

2424
You can also access Redis with an object-mapping client interface. See
2525
[RedisOM for Python]({{< relref "/integrate/redisom-for-python" >}})
@@ -268,7 +268,7 @@ pool.close()
268268

269269
## Example: Indexing and querying JSON documents
270270

271-
Make sure that you have Redis Stack and `redis-py` installed. Import dependencies:
271+
Make sure that you have Redis Community Edition 8.x and `redis-py` installed. Import dependencies:
272272

273273
```python
274274
import redis

content/develop/connect/insight/_index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ weight: 1
2020
[![Discord](https://img.shields.io/discord/697882427875393627?style=flat-square)](https://discord.gg/QUkjSsk)
2121
[![Github](https://img.shields.io/static/v1?label=&message=repository&color=5961FF&logo=github)](https://github.com/redisinsight/redisinsight/)
2222

23-
Redis Insight is a powerful tool for visualizing and optimizing data in Redis or Redis Stack, making real-time application development easier and more fun than ever before. Redis Insight lets you do both GUI- and CLI-based interactions in a fully-featured desktop GUI client.
23+
Redis Insight is a powerful tool for visualizing and optimizing data in Redis, making real-time application development easier and more fun than ever before. Redis Insight lets you do both GUI- and CLI-based interactions in a fully-featured desktop GUI client.
2424

2525
### Installation and release notes
2626

@@ -32,7 +32,7 @@ Redis Insight is a powerful tool for visualizing and optimizing data in Redis or
3232

3333
### Connection management
3434

35-
* Automatically discover and add your local Redis or Redis Stack databases (that use standalone connection type and do not require authentication).
35+
* Automatically discover and add your local Redis databases (that use standalone connection type and do not require authentication).
3636
* Discover your databases in Redis Enterprise Cluster and databases with Flexible plans in Redis Cloud.
3737
* Use a form to enter your connection details and add any Redis database running anywhere (including Redis Community Edition Cluster or Sentinel).
3838
* Connect to a Redis Data Integration (RDI) management plane, create, test, and deploy RDI pipelines, and view RDI statistics.
@@ -93,8 +93,8 @@ The CLI is accessible at any time within the application.
9393
### Workbench
9494

9595
Advanced command line interface with intelligent command auto-complete and complex data visualizations.
96-
* Built-in guides: you can conveniently discover Redis and Redis Stack features using the built-in guides.
97-
* Command auto-complete support for all features in Redis and Redis Stack.
96+
* Built-in guides: you can conveniently discover Redis features using the built-in guides.
97+
* Command auto-complete support for all features in Redis.
9898
* Visualizations of your indexes, queries, and aggregations.
9999
* Visualizations of your [time series]({{< relref "/develop/data-types/timeseries/" >}}) data.
100100

@@ -118,7 +118,7 @@ View and manage the list of consumer groups. See existing consumers in a given c
118118

119119
### Search features
120120

121-
If you're using Redis Stack's indexing, querying, or full-text search features, Redis Insight provides UI controls to quickly and conveniently run search queries against a preselected index. You can also create a secondary index of your data in a dedicated pane.
121+
If you're using the indexing, querying, or full-text search features of Redis Community Edition, Redis Insight provides UI controls to quickly and conveniently run search queries against a preselected index. You can also create a secondary index of your data in a dedicated pane.
122122

123123
<img src="images/search.png">
124124

content/develop/data-types/_index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ implements the following data types:
3838
- [Bitfield](#bitfields)
3939
- [Geospatial](#geospatial-indexes)
4040

41-
[Redis Stack]({{< relref "/operate/oss_and_stack" >}}) and
41+
[Redis Community Edition]({{< relref "/operate/oss_and_stack" >}}) and
4242
[Redis Enterprise]({{< relref "/operate/rs" >}})
4343
also include some [extension modules](#adding-extensions) that implement other
4444
useful types, such as JSON. See [Extension data types](#extension-data-types)
@@ -122,7 +122,7 @@ For more information, see:
122122

123123
## Extension data types
124124

125-
[Redis Stack]({{< relref "/operate/oss_and_stack" >}}) and
125+
[Redis Community Edition]({{< relref "/operate/oss_and_stack" >}}) and
126126
[Redis Enterprise]({{< relref "/operate/rs" >}})
127127
include some [extension modules](#adding-extensions) that implement
128128
the following data types:
@@ -229,4 +229,4 @@ To extend the features provided by the included data types, use one of these opt
229229

230230
1. Write your own custom [server-side functions in Lua]({{< relref "/develop/interact/programmability/" >}}).
231231
1. Write your own Redis module using the [modules API]({{< relref "/develop/reference/modules/" >}}) or check out the [community-supported modules]({{< relref "/operate/oss_and_stack/stack-with-enterprise/" >}}).
232-
1. Use [JSON]({{< relref "/develop/data-types/json/" >}}), [search]({{< relref "/develop/interact/search-and-query/" >}}), [time series]({{< relref "/develop/data-types/timeseries/" >}}), and other capabilities provided by [Redis Stack]({{< relref "/operate/oss_and_stack/" >}}).
232+
1. Use [JSON]({{< relref "/develop/data-types/json/" >}}), [search]({{< relref "/develop/interact/search-and-query/" >}}), [time series]({{< relref "/develop/data-types/timeseries/" >}}), and other capabilities provided by [Redis Community Edition]({{< relref "/operate/oss_and_stack/" >}}).

content/develop/data-types/json/_index.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ weight: 11
1919
[![Discord](https://img.shields.io/discord/697882427875393627?style=flat-square)](https://discord.gg/QUkjSsk)
2020
[![Github](https://img.shields.io/static/v1?label=&message=repository&color=5961FF&logo=github)](https://github.com/RedisJSON/RedisJSON/)
2121

22-
The JSON capability of Redis Stack provides JavaScript Object Notation (JSON) support for Redis. It lets you store, update, and retrieve JSON values in a Redis database, similar to any other Redis data type. Redis JSON also works seamlessly with the [Redis Query Engine]({{< relref "/develop/interact/search-and-query/" >}}) to let you [index and query JSON documents]({{< relref "/develop/interact/search-and-query/indexing/" >}}).
22+
The JSON capability of Redis Community Edition provides JavaScript Object Notation (JSON) support for Redis. It lets you store, update, and retrieve JSON values in a Redis database, similar to any other Redis data type. Redis JSON also works seamlessly with the [Redis Query Engine]({{< relref "/develop/interact/search-and-query/" >}}) to let you [index and query JSON documents]({{< relref "/develop/interact/search-and-query/indexing/" >}}).
2323

2424
## Primary features
2525

@@ -144,11 +144,9 @@ $ redis-cli --raw
144144

145145
## Enable Redis JSON
146146

147-
Redis JSON is not available by default in the basic Redis server, so you
148-
should install Redis Stack or Redis Enterprise,
149-
both of which include JSON and other useful modules.
147+
The Redis JSON data type is part of Redis Community Edition and it is also available in Redis Software and Redis Cloud.
150148
See
151-
[Install Redis Stack]({{< relref "/operate/oss_and_stack/install/install-stack" >}}) or
149+
[Install Redis Community Edition]({{< relref "/operate/oss_and_stack/install/install-stack" >}}) or
152150
[Install Redis Enterprise]({{< relref "/operate/rs/installing-upgrading/install" >}})
153151
for full installation instructions.
154152

0 commit comments

Comments
 (0)