geerlingguy / ansible-role-redis

Ansible Role - Redis
https://galaxy.ansible.com/geerlingguy/redis/
MIT License
254 stars 197 forks source link

hash-map-zipmap config causes redis 2.8 to bail #6

Closed thom-nic closed 9 years ago

thom-nic commented 9 years ago

These items in the redis config template break under redis 2.8:

hash-max-zipmap-entries 512
hash-max-zipmap-value 64

They have been replaced with hash-max-ziplist-* which it appears you already have in the config. http://redis.io/topics/memory-optimization.

geerlingguy commented 9 years ago

Hopefully the above commit fixes this. I'm going to wait for Travis test confirmation before releasing a new version on Galaxy.

thom-nic commented 9 years ago

Thanks for the quick response!