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

Redis embedded server for Java integration testing

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

To resolve the issue of the service failing to start due to the nonexistence of the temporary directory

This worked before I upgraded to macOS Sonoma. Now I get this error message: ``` java.lang.RuntimeException: Can't start redis server. Check logs for details. Redis process log: at redis.embedded.AbstractRedisInstance.awaitRedisServerReady(AbstractRedisInstance.java:70) at...

When use fellow way to create a redis server based on own executable, it fail . `String redisPath ="/usr/local/bin/redis-server"; File file = new File(redisPath); RedisServer redisServer = new RedisServer(file, 6379);...

``` Caused by: java.lang.RuntimeException: Can't start redis server. Check logs for details. at redis.embedded.AbstractRedisInstance.awaitRedisServerReady(AbstractRedisInstance.java:61) at redis.embedded.AbstractRedisInstance.start(AbstractRedisInstance.java:39) at redis.embedded.RedisServer.start(RedisServer.java:9) at com.nemesis.platform.config.PlatformCoreSessionConfig$RedisServerBean.afterPropertiesSet(PlatformCoreSessionConfig.java:82) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1633) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1570) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:539) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:476) at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:303)...

Hi, I have following code: final var serverBuilder = new RedisServerBuilder() //.setting("maxmemory 32M") .setting("maxheap 32M"); final var sentinalBuilder = new RedisSentinelBuilder() //.setting("maxmemory 32M") .setting("maxheap 32M"); final var cluster = RedisCluster.builder()...

# Problem - Issue with Embedded Redis not running after the MacOS Sonoma update. # Solution - Inability to execute .app extensions after the MacOS Sonoma update. - [Reference](https://github.com/golang/go/issues/63368)

can not start for mac os version: mac os big sur 11.4 but when start in mac os catalina is ok。 is this the problem with m1 cpu or mac...

The minimal configuration like RedisServer redisServer = new RedisServer(6379); redisServer.start(); results in an error Can't start redis server. Check logs for details. When I debug AbstractRedisInstance.awaitRedisServerReady(), I see the following...

I'm using `micronaut` and when I'm running the app inside a container I'm receiving this error at first: ```Message: Failed to start Redis instance Path Taken: StatefulRedisConnection.redisConnection([RedisClient redisClient]) --> RedisClient.redisClient([AbstractRedisConfiguration...

# Security Vulnerability Fix This pull request fixes a Temporary File Information Disclosure Vulnerability, which existed in this project. ## Preamble The system temporary directory is shared between all users...