thmarx / vert.x-busmod-redis

Vert.x redis busmod - currently not under active development
Other
12 stars 7 forks source link

minor documentation issue + question #1

Closed cslarson closed 12 years ago

cslarson commented 12 years ago

The readme lists an example request for the 'exists' command:

{
    command : "exists",
    value : "key1"
}

though the 'key' should be 'key' rather than 'value'. When I used 'value' here a java.lang.NullPointerException. An exception also occurred when doing a 'get' on a key that didn't exist. On building the module the tests all ran successfully so these errors could relate to how I packaged the module in my apps mod directory. I built the module by running 'mvn install' which seemed to download the dependencies, build, and run the tests. I then extracted the redis-client-0.1.0-mod.tar.gz from the target directory into mods/redis-client in my app directory.

thmarx commented 12 years ago

Thanks for reporting. The documentation issue is fixed. Currently the project is refactored to use gradle an the vertx testframework. so in a few days you will be able to install the mod simply by typing vertx install vert.x-busmod-redisv1