Skip to content

An implementation of the Apache Commons Configuration interface using Redis.

Notifications You must be signed in to change notification settings

richtmat/commons-config-redis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

commons-config-redis

What's that?

commons-config-redis is an implementation of the Apache Commons Configurations Configuration interface using the Redis key-value store.

Redis is a very fast NoSQL key-value store and therefore a natural fit to hold configuration values. commons-config-redis uses Jedis as a Redis client implementation.

How do I use it?

You need to build it from source with maven:

$ mvn install

Then you can use it as a maven dependency locally:

<dependency>
	<groupId>de.richtmat</groupId>
	<artifactId>commons-config-redis</artifactId>
	<version>1.0-SNAPSHOT</version>
</dependency>

To use it just create an instance of RedisConfiguration:

Configuration config = new RedisConfiguration();

or inject it (via Spring) so you don't need to bind your class to commons-config-redis.

Contributions welcome!

Fork it, change it, push it!

About

An implementation of the Apache Commons Configuration interface using Redis.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages