JRedis Changelog

What's new in JRedis 1.0 RC2

Aug 22, 2010
  • Various bugs were fixed.
  • Missing commands were added.
  • An Extensions module was added.
  • Clustering support was started for Redis 1.2.n compatible connectors.

New in JRedis 1.0 RC1 (Mar 22, 2010)

  • As of this note, you can download Redis 1.2.5 here:
  • JARS:
  • A single (binary only) jar is all you need to use JRedis and the reference implementations in your application.
  • The full distribution under /Release includes all installed jars as before, if you need sources and/or benchmark and example modules as well.
  • NEW FEATURES:
  • Added support for the missing elements of the INFO result map.
  • Added support for Z[REV]RANGE ... WITHSCORES.(Synch/Asynch).
  • Usage example class in /Examples module.
  • Added support for ZREMRANGEBYSCORE.(Synch/Asynch).
  • Includes missing tests for ZRANGEBYSCORE.
  • Added support for BGREWRITEAOF.(Synch/Asynch).
  • Added support for EXPIREAT.(Synch/Asynch)..
  • Added support for DEBUG OBJECT (Synch/Asynch).
  • Added ECHO (synch/asynch). Tested.
  • Added SPOP (synch/Asynch). Tested
  • See:
  • http://github.com/alphazero/jredis/commits/1.2.n
  • BUG FIX:
  • Fix for issue GH-12: http://github.com/alphazero/jredis/issues#issue/12
  • See:
  • http://github.com/alphazero/jredis/issues/
  • http://github.com/alphazero/jredis/issues/closed
  • INTERNALS:
  • Of interest to those who are using components to build their own clients, and not relevant to reference implementation users.
  • SortSupport changed to use Command.Options
  • Retiring Command.length
  • A few new top-level and inner classes to support command options,
  • and a mod to semantics of Command names (using $OPTS)
  • ROAD MAP:
  • This release is only missing SYNC and MONITOR as far as I know.The reasons were noted here: .These may be supported in a subsequent release candidate for JRedis 1.0.
  • An extension point for customizable consistent hashing schema to support sharding may be included in subsequent release candidate for JRedis 1.0.

New in JRedis 04-21-09 (Apr 22, 2009)

  • Fairly major updates, including up to date coverage of latest Redis commands, new TestNG testing, and structured Maven poms for build. Maven2 is required to build and run the tests.