Skip to content

Commit 686ebe9

Browse files
committed
Add info regarding Redis driver testing
1 parent 499956b commit 686ebe9

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

Diff for: docs/RedisDriver.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Redis driver
22

3-
**⚠️ WARNING: This module is deprecated and scheduled for removal in a future release. Please migrate to an alternative
4-
solution.**
3+
**⚠️ WARNING: This module is deprecated and scheduled for removal in a future release.
4+
It has not been actively tested since v2.21.0. Please migrate to an alternative solution. **
55

66
`commons-redis` - Scala driver for Redis
77

Diff for: redis/src/main/scala/com/avsystem/commons/redis/RedisClusterClient.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ import scala.concurrent.duration.*
4545
* @param config client configuration - [[ClusterConfig]]
4646
* @param clusterStateObserver optional observer for monitoring client's state and connections - [[ClusterStateObserver]]
4747
*/
48-
@deprecated("Redis driver is scheduled for removal. Use a different library, e.g. redisson.", "2.21.0")
48+
@deprecated("Redis driver is scheduled for removal. It has not been actively tested since v2.21.0. Use a different library, e.g. redisson.", "2.21.0")
4949
final class RedisClusterClient(
5050
val seedNodes: Seq[NodeAddress] = List(NodeAddress.Default),
5151
val config: ClusterConfig = ClusterConfig(),

Diff for: redis/src/main/scala/com/avsystem/commons/redis/RedisConnectionClient.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import org.apache.pekko.pattern.ask
2424
* If you simply need a single-connection, reconnectable client, use [[RedisNodeClient]] with connection pool size
2525
* configured to 1.
2626
*/
27-
@deprecated("Redis driver is scheduled for removal. Use a different library, e.g. redisson.", "2.21.0")
27+
@deprecated("Redis driver is scheduled for removal. It has not been actively tested since v2.21.0. Use a different library, e.g. redisson.", "2.21.0")
2828
final class RedisConnectionClient(
2929
val address: NodeAddress = NodeAddress.Default,
3030
val config: ConnectionConfig = ConnectionConfig(),

Diff for: redis/src/main/scala/com/avsystem/commons/redis/RedisExecutor.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ trait RedisNodeExecutor extends RedisKeyedExecutor with RedisOpExecutor
5454
*/
5555
trait RedisConnectionExecutor extends RedisNodeExecutor
5656

57-
@deprecated("Redis driver is scheduled for removal. Use a different library, e.g. redisson.", "2.21.0")
57+
@deprecated("Redis driver is scheduled for removal. It has not been actively tested since v2.21.0. Use a different library, e.g. redisson.", "2.21.0")
5858
abstract class RedisClient extends RedisExecutor with Closeable {
5959
def initialized: Future[this.type]
6060
}

Diff for: redis/src/main/scala/com/avsystem/commons/redis/RedisNodeClient.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import scala.concurrent.duration.*
2222
* and batches and operations are distributed over connections using round-robin scheme. Connections are automatically
2323
* reconnected upon failure (possibly with an appropriate delay, see [[config.NodeConfig NodeConfig]] for details).
2424
*/
25-
@deprecated("Redis driver is scheduled for removal. Use a different library, e.g. redisson.", "2.21.0")
25+
@deprecated("Redis driver is scheduled for removal. It has not been actively tested since v2.21.0. Use a different library, e.g. redisson.", "2.21.0")
2626
final class RedisNodeClient(
2727
val address: NodeAddress = NodeAddress.Default,
2828
val config: NodeConfig = NodeConfig(),

Diff for: redis/src/main/scala/com/avsystem/commons/redis/config/config.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ case class NodeConfig(
161161
* @param debugListener listener for traffic going through this connection. Only for debugging and testing
162162
* purposes
163163
*/
164-
@deprecated("Redis driver is scheduled for removal. Use a different library, e.g. redisson.", "2.21.0")
164+
@deprecated("Redis driver is scheduled for removal. It has not been actively tested since v2.21.0. Use a different library, e.g. redisson.", "2.21.0")
165165
case class ConnectionConfig(
166166
initCommands: RedisBatch[Any] = RedisBatch.unit,
167167
sslEngineCreator: OptArg[() => SSLEngine] = OptArg.Empty,

0 commit comments

Comments
 (0)