A Java based clone of Redis.
Only a subset commands are implemented right now,
SET
GET
SETBIT
GETBIT
ZCOUNT
ZCARD
ZRANGE
SAVE
QUIT
Apart from the above, we cover loading an rdf file during startup as well.
To build from source,
$ git clone https://github.com/anoopelias/jredis.git
$ cd jredis
$ mvn clean install
This should run all test cases as well as generate a package in target
folder.
To run the package, follow the instructions below
$ cd target
$ tar -xvf jredis-0.5.4-SNAPSHOT-bin.tar.gz
$ ./start.sh
##Why?
- To find out what it takes to write a bit of system level programs.
- To see how different is a Java implementation compared to its C counterpart.
- And most important - to have some fun.
- Performance benchmarks against the original