redis-plus

Parent pom for all Fizzed maven projects

License

License

Categories

Categories

Redis Data Databases
GroupId

GroupId

com.fizzed
ArtifactId

ArtifactId

redis-plus
Last Version

Last Version

1.0.0
Release Date

Release Date

Type

Type

pom
Description

Description

redis-plus
Parent pom for all Fizzed maven projects
Project Organization

Project Organization

Fizzed, Inc
Source Code Management

Source Code Management

https://github.com/fizzed/redis-plus

Download redis-plus

Filename Size
redis-plus-1.0.0.pom 4 KB
Browse

How to add to project

<!-- https://jarcasting.com/artifacts/com.fizzed/redis-plus/ -->
<dependency>
    <groupId>com.fizzed</groupId>
    <artifactId>redis-plus</artifactId>
    <version>1.0.0</version>
    <type>pom</type>
</dependency>
// https://jarcasting.com/artifacts/com.fizzed/redis-plus/
implementation 'com.fizzed:redis-plus:1.0.0'
// https://jarcasting.com/artifacts/com.fizzed/redis-plus/
implementation ("com.fizzed:redis-plus:1.0.0")
'com.fizzed:redis-plus:pom:1.0.0'
<dependency org="com.fizzed" name="redis-plus" rev="1.0.0">
  <artifact name="redis-plus" type="pom" />
</dependency>
@Grapes(
@Grab(group='com.fizzed', module='redis-plus', version='1.0.0')
)
libraryDependencies += "com.fizzed" % "redis-plus" % "1.0.0"
[com.fizzed/redis-plus "1.0.0"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

  • jedis-core
  • jedis-queue
  • jedis-ninja-module

Redis Plus by Fizzed

Maven Central

Fizzed, Inc. (Follow on Twitter: @fizzed_inc)

Overview

Utilities and framework integrations for Java and Redis. Includes an integration of Redis with the Ninja Framework.

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

<dependency>
    <groupId>com.fizzed</groupId>
    <artifactId>jedis-ninja-module</artifactId>
    <version>1.0.0</version>
</dependency>

In your conf/Module.java file:

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:

#
# 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.

com.fizzed

Fizzed, Inc.

Helping companies launch and grow their mobile, web, and data products

Versions

Version
1.0.0