Skip to content

e-mzungu/rjc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

RJC

RJC is a Redis Java Client.

It provides connection pooling in Apache DBCP style, sharding, pipelines, transactions and messages.

It's aimed to work in multi threading environments.

RJC is fully compatible with Redis 2.x.

OSGi ready (thanks iocanel).

See code examples in the project wiki page.

How to use it with Maven

Include maven dependency to you project

    <dependency>
        <groupId>org.idevlab</groupId>
        <artifactId>rjc</artifactId>
        <version>0.7</version>
    </dependency>

Quick start

Install RJC as described above.

Run Redis.

Perform:

    DataSource dataSource = new SimpleDataSource("localhost");
    SingleRedisOperations redis = new RedisNode(dataSource);
    redis.set("foo", "hello");
    String value = redis.get("foo");

See more examples here.