From 8d8bc5c2ba2ef06e5f7b89429f484386499b60ba Mon Sep 17 00:00:00 2001 From: Sam Pullara Date: Sun, 18 Mar 2012 16:09:04 -0700 Subject: [PATCH] modify the README for the new structure --- .gitignore | 9 +++++++++ README | 20 ++++++++++++++++---- 2 files changed, 25 insertions(+), 4 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..cc6c12b --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +*.iml +*~ +*.ipr +.idea +target +*.iws +cache +*.releaseBackup +release.properties diff --git a/README b/README index a97c4d6..83c0860 100644 --- a/README +++ b/README @@ -12,18 +12,30 @@ Copyright 2012 Sam Pullara See the License for the specific language governing permissions and limitations under the License. -A very fast Redis client. +A very fast Redis client for Java. Description of each module: client/ Leverages the protocol module for encoding and decoding. Supports both synchronous and asynchronous pipelined requests from the RedisClient. -clientgen/ - Scrapes the redis.io/commands page and produces the typed Java client and the - Finagle-based Scala client. protocol/ Redis protocol encoder / decoder based on input/outputstreams. This is the fastest implementation if blocking i/o is ok for your use case. + +benchmark/ + A redis-benchmark clone that uses this Java client for comparison testing. + +clientgen/ + Scrapes the redis.io/commands page and produces the typed Java client and the + Finagle-based Scala client. loader/ Utility to parse HDFS line-oriented files and load them into Redis + +Maven dependency: + + + com.github.spullara.redis + client + 0.1 +