com.fizzed:jedis-core

Parent pom for all Fizzed maven projects

License

License

Categories

Categories

Jedis Data Databases
GroupId

GroupId

com.fizzed
ArtifactId

ArtifactId

jedis-core
Last Version

Last Version

1.0.0
Release Date

Release Date

Type

Type

jar
Description

Description

Parent pom for all Fizzed maven projects
Project Organization

Project Organization

Fizzed, Inc

Download jedis-core

How to add to project

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

Dependencies

compile (4)

Group / Artifact Type Version
com.fizzed : crux-util jar 0.23.0
com.fizzed : crux-uri jar 0.23.0
redis.clients : jedis jar 2.9.0
org.slf4j : slf4j-api jar 1.7.21

test (3)

Group / Artifact Type Version
org.hamcrest : java-hamcrest jar 2.0.0.0
junit : junit jar 4.12
ch.qos.logback : logback-classic jar 1.1.7

Project Modules

There are no modules declared in this project.

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