Skip to content

Commit 7fbc30c

Browse files
DOC-5711 applied PR feedback
1 parent 66399dd commit 7fbc30c

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

content/develop/clients/lettuce/connect.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,6 @@ MaintenanceEventsOptions maintOptions = MaintenanceEventsOptions.builder()
284284

285285
ClientOptions clientOptions = ClientOptions.builder()
286286
.supportMaintenanceEvents(maintOptions)
287-
.protocolVersion(ProtocolVersion.RESP3)
288287
.build();
289288

290289
redisClient.setOptions(clientOptions);
@@ -293,8 +292,3 @@ try (StatefulRedisConnection<String, String> connection = redisClient.connect())
293292
// ...
294293
// ...
295294
```
296-
297-
{{< note >}}SCE requires the [RESP3]({{< relref "/develop/reference/protocol-spec#resp-versions" >}})
298-
protocol, so you must add the option `protocolVersion(ProtocolVersion.RESP3)`
299-
to the `ClientOptions` builder explicitly.
300-
{{< /note >}}

content/develop/clients/sce.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,12 @@ see no disruption in service.
3636
SCE is enabled by default on Redis Cloud, but you must enable it
3737
explicitly on Redis Enterprise servers.
3838

39-
You must also configure SCE on the client side during connection.
40-
See the pages linked below to learn how to enable SCE for:
39+
SCE is enabled automatically on the client side during connection
40+
if you select the [RESP3]({{< relref "/develop/reference/protocol-spec#resp-versions" >}})
41+
protocol, which is a requirement for SCE. However, you can
42+
configure some parameters, such as the timeouts to use
43+
during maintenance.
44+
See the pages linked below to learn how to configure SCE for:
4145

4246
- [redis-py]({{< relref "/develop/clients/redis-py/connect#connect-using-seamless-client-experience-sce" >}})
4347
- [node-redis]({{< relref "/develop/clients/nodejs/connect#connect-using-seamless-client-experience-sce" >}})

0 commit comments

Comments
 (0)