Releases: Livestream/scredis
Releases · Livestream/scredis
v2.0.6
v2.0.5
v2.0.4
Changes
- Added
withActorSystemfactory methods to the Redis companion object. These new methods tellRedisto use the providedActorSysteminstead of creating a new one. Note thatRediswill not shutdown the providedActorSystemupon invokingquitso it is your responsibility to shut it down (see #24). - Removed final modifier from
Redis,Client,BlockingClientandSubscriberClientclasses so that these classes can be mocked in unit tests (see #25).
v2.0.3-2.11
Changes
- Added
awaitTerminationmethod to all clients which waits for all actors to terminate after aQUITcommand has been sent scredis.Redisnow awaits for all actors to terminate before shutting down theActorSystem
v2.0.3-2.10
Changes
- Added
awaitTerminationmethod to all clients which waits for all actors to terminate after aQUITcommand has been sent scredis.Redisnow 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)