https://github.com/fizzed/redis-plus
Utilities and framework integrations for Java and Redis
https://github.com/fizzed/redis-plus
Last synced: about 2 months ago
JSON representation
Utilities and framework integrations for Java and Redis
- Host: GitHub
- URL: https://github.com/fizzed/redis-plus
- Owner: fizzed
- Created: 2020-12-30T03:22:46.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-12-30T03:28:01.000Z (over 5 years ago)
- Last Synced: 2025-12-25T17:09:30.704Z (6 months ago)
- Language: Java
- Size: 1.53 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Redis Plus by Fizzed
============================================
[](https://maven-badges.herokuapp.com/maven-central/com.fizzed/redis-plus)
[Fizzed, Inc.](http://fizzed.com) (Follow on Twitter: [@fizzed_inc](http://twitter.com/fizzed_inc))
## Overview
Utilities and framework integrations for Java and Redis. Includes an integration
of [Redis](https://redis.io/) with the [Ninja Framework](https://github.com/ninjaframework/ninja).
## Ninja Framework
Ninja Framework module for Redis based on Jedis. Will help provide connectivity to Redis,
a connection pool, and a Ninja cache implementation.
### Setup
Add the jedis-ninja-module dependency to your Maven pom.xml
```xml
com.fizzed
jedis-ninja-module
1.0.0
```
In your `conf/Module.java` file:
```java
package conf;
import com.fizzed.jedis.ninja.NinjaJedisModule;
import com.google.inject.AbstractModule;
public class Module extends AbstractModule {
@Override
protected void configure() {
install(new NinjaJedisModule());
}
}
```
In your `conf/application.conf` file:
```java
#
# redis
#
redis.url = redis://localhost:5432
redis.password = test
redis.validate_at_start = true
```
## License
Copyright (C) 2020 Fizzed, Inc.
This work is licensed under the Apache License, Version 2.0. See LICENSE for details.