Skip to content

Latest commit

 

History

History
36 lines (23 loc) · 998 Bytes

README.md

File metadata and controls

36 lines (23 loc) · 998 Bytes

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.