Replies: 2 comments 3 replies
-
Where did you find the REDIS_APPENDONLY env variable? |
Beta Was this translation helpful? Give feedback.
0 replies
-
The Currently, we use I think we should add @davidfowl @eerhardt thoughts? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello everyone,
I’m currently trying to enable AOF (Append-Only File) persistence for a Redis container in Aspire 9.3, but I'm running into an issue. No matter what I try, the container always starts with appendonly set to no (AOF enabled = 0).
Has anyone successfully enabled AOF for Redis in Aspire 9.3?
Any help or suggestions would be greatly appreciated! 😊
Thanks in advance!
var cache = builder.AddRedis("cache")
.WithDataVolume("myRedisData", false)
.WithPersistence(TimeSpan.FromSeconds(10), 5)
.WithEnvironment("REDIS_APPENDONLY", "yes")
.WithRedisCommander();
Beta Was this translation helpful? Give feedback.
All reactions