embedded-redis icon indicating copy to clipboard operation
embedded-redis copied to clipboard

Redis embedded server for Java integration testing

Results 6 embedded-redis issues
Sort by recently updated
recently updated
newest added

While running this on OS X I get `java.lang.IllegalArgumentException: resource redis-server-3.0.7-darwin not found.`. I think this bug was introduced in this fork, and does not exist in the original project.

enhancement
PR welcome
Waiting other issue

It should be named Redis.stdout or something like that as its literally the standard output of the underlying redis process.

enhancement
question

That way it can play nicely with custom logger environment (e.g. sbt)

PR welcome

Right now the `RedisCluster.Builder` have some hardcoded values: ``` builder.setting("cluster-enabled yes"); builder.setting("cluster-config-file nodes-" + port + ".conf"); builder.setting("cluster-node-timeout 2000"); builder.setting("appendonly yes"); builder.setting("dbfilename dump-" + port + ".rdb"); ``` Those should...

PR welcome

```shell $ ./deploy.sh Deploying to Bintray :generatePomFileForLibPublication :compileJava UP-TO-DATE :processResources NO-SOURCE :classes UP-TO-DATE :jar UP-TO-DATE :javadoc UP-TO-DATE :javadocJar UP-TO-DATE :sourcesJar UP-TO-DATE :publishLibPublicationToMavenLocal :modules:redis-3.0.7:generatePomFileForLibPublication :modules:redis-3.0.7:compileJava UP-TO-DATE :modules:redis-3.0.7:processResources UP-TO-DATE :modules:redis-3.0.7:classes UP-TO-DATE :modules:redis-3.0.7:jar...

PR welcome

In case of Redis startup failed I get "Can't start redis server. Check logs for details." message. What logs should be checked? Logs of Redis? Then it would be better...

question