Skip to content

gbrd/embedded-redis

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

90 Commits
 
 
 
 
 
 
 
 

Repository files navigation

embedded-redis

Redis embedded server

This is a fork of https://github.com/nielspeter/embedded-redis

Maven dependency

Currently embedded-redis is available in sonatype repository:

Dependency configuration:

<dependency>
  <groupId>com.orange.redis-embedded</groupId>
  <artifactId>embedded-redis</artifactId>
  <version>0.6</version>
</dependency>

Usage example

Running RedisServer is as simple as:

RedisServer redisServer = new RedisServer();
redisServer.start();
// do some work
redisServer.stop();

You can also provide RedisServer with a version to run:

RedisServer redisServer = new RedisServer("2.8.9");

A simple redis integration test would look like this:

public class SomeIntegrationTestThatRequiresRedis {
  private RedisServer redisServer;
  
  @Before
  public void setup() throws Exception {
    redisServer = new RedisServer();
    redisServer.start();
  }
  
  @Test
  public void test() throws Exception {
    // testing code that requires redis running
  }
  
  @After
  public void tearDown() throws Exception {
    redisServer.stop();
  }
}

Redis version

RedisServer runs os-dependent executable enclosed in jar.

Currently it includes the following binaries:

  • Redis 2.8.5 in case of Linux/Mac OS X
  • Redis 2.8.9 in case of Linux/Mac OS X

About

Redis embedded server

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%