We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sidekiq complains about the Redis maxmemory policy and asks for a noeviction policy. Evaluate and implement.
maxmemory
noeviction
The text was updated successfully, but these errors were encountered:
From my Mastodon Terraform project where I did the same some weeks ago, using the same architecture on AWS as you ;-)
resource "aws_elasticache_parameter_group" "redis" { name = var.name family = "redis6.x" parameter { name = "maxmemory-policy" value = "noeviction" } }
And it stops complaining.
Sorry, something went wrong.
depends on cfn-modules/elasticache-redis#12
feat: configure Redis maxmemory policy (closes #2)
7f74d55
michaelwittig
No branches or pull requests
Sidekiq complains about the Redis
maxmemory
policy and asks for anoeviction
policy. Evaluate and implement.The text was updated successfully, but these errors were encountered: