Releases: Livestream/scredis
Releases · Livestream/scredis
v2.0.6
v2.0.5
v2.0.4
Changes
- Added
withActorSystem
factory methods to the Redis companion object. These new methods tellRedis
to use the providedActorSystem
instead of creating a new one. Note thatRedis
will not shutdown the providedActorSystem
upon invokingquit
so it is your responsibility to shut it down (see #24). - Removed final modifier from
Redis
,Client
,BlockingClient
andSubscriberClient
classes so that these classes can be mocked in unit tests (see #25).
v2.0.3-2.11
Changes
- Added
awaitTermination
method to all clients which waits for all actors to terminate after aQUIT
command has been sent scredis.Redis
now awaits for all actors to terminate before shutting down theActorSystem
v2.0.3-2.10
Changes
- Added
awaitTermination
method to all clients which waits for all actors to terminate after aQUIT
command has been sent scredis.Redis
now awaits for all actors to terminate before shutting down theActorSystem
v2.0.2-2.11
Changes
- Removed application.conf which interfered with logging configuration of Akka
v2.0.2-2.10
Changes
- Removed application.conf which interfered with logging configuration of Akka
v2.0.1-2.11
Changes
- Fixed #19 where the result from a failed transaction due to watched keys was not properly being parsed
v2.0.1-2.10
Changes
- Fixed #19 where the result from a failed transaction due to watched keys was not properly being parsed
v2.0.0-2.11
Changes
- Completed documentation
- Blocking commands now return a Try (to make it clear that an exception can be thrown and to avoid the overhead of try/catch blocks)
- AnyWriter is no longer imported by default, instead, the Writer for every Scala base type is imported (prevents ambiguous writer when user defines own Writer)