Skip to content

Releases: etaty/rediscala

1.9.0

23 Jun 15:29
Compare
Choose a tag to compare

Add support for scala 2.13
Add support for Akka 2.5

https://github.com/etaty/rediscala/milestone/12

1.8.0

02 Jan 15:34
Compare
Choose a tag to compare

first version compiled for scala 2.12 (and 2.11)
https://github.com/etaty/rediscala/milestone/10?closed=1

1.7.0

19 Nov 18:17
Compare
Choose a tag to compare

1.6.0

03 Jan 20:14
Compare
Choose a tag to compare
  • faster parser (for big reply) #112
  • new dynamic sentinel pool master-slaves #103
  • add support for redis scan commands #95

https://github.com/etaty/rediscala/issues?q=milestone%3A1.6.0+is%3Aclosed

1.5.0

14 Sep 17:39
Compare
Choose a tag to compare

1.4.1

15 Oct 19:23
Compare
Choose a tag to compare

Small fix :
#59 : Clear cached InetSocketAddress on reconnect.

1.3.1

08 May 16:22
Compare
Choose a tag to compare
  • use akka 2.3
  • fix Store updated channels/patterns in subscription actor #18
  • push future release to bintray
    resolvers += "rediscala" at "http://dl.bintray.com/etaty/maven"
  • release for scala 2.10 & 2.11

1.3

14 Oct 16:41
Compare
Choose a tag to compare
1.3

Features :

  • Redis client master slaves #12
  • Support for multi sentinels #11
  • Pool of connections #2
  • Server commands #13
  • on connect authenticate and select a DB #9

Bugs :

  • when reconnecting, the connection to the old redis server stayed open #15

1.2

12 Sep 11:14
Compare
Choose a tag to compare
1.2

bugs :

  • Reply split in many chunks #6
  • Exception in RedisReplyDecoder after reconnection #10

new features :

  • update Akka 2.2.1 #8
  • Redis Sentinel support #5
  • ByteStringDeserializer #3
  • ByteStringSerializer #4
  • ByteStringFormatter #7

1.1

22 Aug 12:15
Compare
Choose a tag to compare
1.1
  • All commands are available as case class
  • Add scripting commands
  • Remove Try from the API (example: Future[Try[T]] is now Future[T]) (just few commands are affected)
  • faster: All the decoding is done in the decoding Actor instead of starting Futures everywhere.

The benchmark give results of more than 250 000 requests/second. The curve for PING is not good, maybe it's the old sun/oracle jvm 1.6 from osx acting weird.