Redis Launcher

A Java library for controlling a redis server programmatically

Лицензия

Лицензия

Категории

Категории

Redis Данные Базы данных
Группа

Группа

uk.co.datumedge
Идентификатор

Идентификатор

redis-launcher
Последняя версия

Последняя версия

0.3
Дата

Дата

Тип

Тип

jar
Описание

Описание

Redis Launcher
A Java library for controlling a redis server programmatically
Ссылка на сайт

Ссылка на сайт

https://github.com/hertzsprung/redis-launcher
Система контроля версий

Система контроля версий

http://github.com/hertzsprung/redis-launcher

Скачать redis-launcher

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/uk.co.datumedge/redis-launcher/ -->
<dependency>
    <groupId>uk.co.datumedge</groupId>
    <artifactId>redis-launcher</artifactId>
    <version>0.3</version>
</dependency>
// https://jarcasting.com/artifacts/uk.co.datumedge/redis-launcher/
implementation 'uk.co.datumedge:redis-launcher:0.3'
// https://jarcasting.com/artifacts/uk.co.datumedge/redis-launcher/
implementation ("uk.co.datumedge:redis-launcher:0.3")
'uk.co.datumedge:redis-launcher:jar:0.3'
<dependency org="uk.co.datumedge" name="redis-launcher" rev="0.3">
  <artifact name="redis-launcher" type="jar" />
</dependency>
@Grapes(
@Grab(group='uk.co.datumedge', module='redis-launcher', version='0.3')
)
libraryDependencies += "uk.co.datumedge" % "redis-launcher" % "0.3"
[uk.co.datumedge/redis-launcher "0.3"]

Зависимости

compile (1)

Идентификатор библиотеки Тип Версия
org.apache.commons : commons-exec jar 1.1

test (8)

Идентификатор библиотеки Тип Версия
junit : junit-dep jar 4.10
org.hamcrest : hamcrest-core jar 1.2.1
org.hamcrest : hamcrest-library jar 1.2.1
org.jmock : jmock-junit4 jar 2.5.1
org.jmock : jmock-legacy jar 2.5.1
redis.clients : jedis jar 2.0.0
org.apache.commons : commons-io jar 1.3.2
com.google.guava : guava jar r09

Модули Проекта

Данный проект не имеет модулей.

Redis-launcher is a Java library for controlling a redis server programmatically. It is released under the MIT license.

Installation

Installing from Maven Central

<dependency>
	<groupId>uk.co.datumedge</groupId>
	<artifactId>redis-launcher</artifactId>
	<version>0.3</version>
</dependency>

Installing from source

mvn -Dredislauncher.command=/path/to/redis-server install

Getting started

The simplest way to start a redis server is to set the redislauncher.command system property as the path to the redis-server executable, then use the following code:

RedisServer redisServer = LocalRedisServer.newInstance();
try {
   redisServer.start();
   ...
} finally {
   redisServer.stop();
}

Resources

Версии библиотеки

Версия
0.3
0.2
0.1