Created
April 30, 2017 18:49
-
-
Save cantremember/fdcafb60a565f5eeefde7649dd408452 to your computer and use it in GitHub Desktop.
Redis; lots of connections, low tolerance for under-run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
daemonize yes | |
logfile "/var/log/redis/redis-server.log" | |
save "" | |
dir /tmp | |
# lots of connections | |
maxclients 10000 | |
# low tolerance for under-run | |
# otherwise, redis-server gets a memory leak | |
client-output-buffer-limit pubsub 16mb 4mb 15 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment