forked from acrosa/scala-redis
-
Notifications
You must be signed in to change notification settings - Fork 218
Release Notes
Debasish Ghosh edited this page May 9, 2015
·
8 revisions
- Issues Fixed: #135, #139, #140
- API Changes: HyperLogLog APIs now return
Option
. Sorry for the change in API, but the previous version would causeNullPointerException
in pipelining.
Features:
- Runs in Scala 2.10.0-RC5, 2.9.2 and 2.9.1
- Added some features of Redis 2.6
- Pull Requests Merged: #52, #54, #59
- Issues Closed: #52, #53, #54, #56, #57, #58, #59
Features:
- Runs in Scala 2.10.0-RC2, 2.9.2 and 2.9.1
- Added some features of Redis 2.6
- Pull Requests Merged: #45, #49, #50
- Issues Closed: #42, #44, #45, #46, #47, #48, #49, #50, #51
- Pull Requests Merged: #23, #25, #27, #28, #29, #34, #35, #36, #41
- Issues Closed: #26, #33, #38, #39, #40
Note: Issue #41 (via pull request #41) will cause some existing APIs / clients to break. But it had to be done to ensure proper data type usage for commands like INCR. Note an integer in redis is a signed 64-bit, this is Long in Scala. Treating it like an Int will cause problems in many cases.