You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/asciidoc/upgrading.adoc
+19
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,8 @@
1
1
[[upgrading]]
2
2
= Upgrading
3
3
4
+
The following section provides information about changes that are likely to have an effect on the application and might even prevent it from compiling.
|_now requires a `Connection` instead of `Jedis` instance_
192
+
193
+
|o.s.d.redis.connection.jedis.JedisConverters
194
+
|
195
+
|has package visibility now
196
+
187
197
|o.s.d.redis.connection.jedis.JedisConverters
188
198
|tuplesToTuples
189
199
|-
@@ -231,3 +241,12 @@ This effects methods on `LettuceConnectionFactory` and `LettuceConnection`.
231
241
232
242
`AuthenticatingRedisClient` has been removed without replacement.
233
243
Please refer to the https://lettuce.io/core/release/reference/index.html#basic.redisuri[driver documentation] for `RedisURI` to set authentication data.
244
+
245
+
== Jedis
246
+
247
+
Please read the Jedis https://github.com/redis/jedis/blob/v4.0.0/docs/3to4.md[upgrading guide] which covers important driver changes.
248
+
249
+
=== Transactions / Pipelining
250
+
251
+
Pipelining and Transactions are now mutually exclusive.
252
+
The usage of server or connection commands in pipeline/transactions mode is no longer possible.
Copy file name to clipboardExpand all lines: src/main/java/org/springframework/data/redis/connection/lettuce/StaticMasterReplicaConnectionProvider.java
0 commit comments