redis-script-manager-jedis

Simple manager for scripting of Redis with jedis

License

License

Categories

Categories

Redis Data Databases Net Jedis
GroupId

GroupId

net.moznion
ArtifactId

ArtifactId

redis-script-manager-jedis
Last Version

Last Version

0.1.0
Release Date

Release Date

Type

Type

jar
Description

Description

redis-script-manager-jedis
Simple manager for scripting of Redis with jedis
Project URL

Project URL

https://github.com/moznion/redis-script-manager-jedis
Source Code Management

Source Code Management

https://github.com/moznion/redis-script-manager-jedis

Download redis-script-manager-jedis

How to add to project

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

Dependencies

compile (2)

Group / Artifact Type Version
net.moznion : redis-script-manager-core jar 0.4.0
redis.clients : jedis jar 2.8.1

test (2)

Group / Artifact Type Version
junit : junit jar 4.12
org.assertj : assertj-core jar 3.4.1

Project Modules

There are no modules declared in this project.

Redis Script Manager for Java with Jedis Build Status Maven Central

Simple manager for scripting of Redis with Jedis.
This library is Java port of p5-Redis-Script.

Usage

final Jedis jedis = new Jedis("127.0.0.1", 6379);
final JedisScriptManager scriptManager = new JedisScriptManager(jedis, "redis.call('SET', KEYS[1], ARGV[1])");
scriptManager.eval(new String[] { "sample_key" }, new String[] { "42" });

See Also

Author

moznion ([email protected])

License

MIT

Versions

Version
0.1.0
0.0.1