All Versions
10
Latest Version
Avg Release Cycle
15 days
Latest Release
3752 days ago
Changelog History
Changelog History
-
v2.0.6 Changes
December 16, 2014 -
v2.0.5 Changes
October 27, 2014๐ Changes
- ๐ Fixed an issue in the zAdd request which prevented multiple members with identical scores to be added (see #26)
-
v2.0.4 Changes
October 14, 2014๐ 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).
- โ Added
-
v2.0.3-2.11 Changes
October 08, 2014๐ 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
- โ Added
-
v2.0.3-2.10 Changes
October 08, 2014๐ 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
- โ Added
-
v2.0.2-2.11 Changes
August 24, 2014๐ Changes
- Removed application.conf which interfered with logging configuration of Akka
-
v2.0.2-2.10 Changes
August 24, 2014๐ Changes
- Removed application.conf which interfered with logging configuration of Akka
-
v2.0.1-2.11 Changes
August 17, 2014๐ 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
August 17, 2014๐ 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
August 01, 2014๐ 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)
- 0๏ธโฃ 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)