Merge pull request #70 from caseycs/adjustable_connection_count

PR #70: Make connection count adjustable.
pull/63/head
Jeff Geerling 9 years ago
commit 8991c7c8b9
  1. 1
      defaults/main.yml
  2. 1
      templates/my.cnf.j2

@ -43,6 +43,7 @@ mysql_read_rnd_buffer_size: "4M"
mysql_myisam_sort_buffer_size: "64M"
mysql_thread_cache_size: "8"
mysql_query_cache_size: "16M"
mysql_max_connections: 151
# Other settings.
mysql_wait_timeout: 28800

@ -73,6 +73,7 @@ read_rnd_buffer_size = {{ mysql_read_rnd_buffer_size }}
myisam_sort_buffer_size = {{ mysql_myisam_sort_buffer_size }}
thread_cache_size = {{ mysql_thread_cache_size }}
query_cache_size = {{ mysql_query_cache_size }}
max_connections = {{ mysql_max_connections }}
# Other settings.
wait_timeout = {{ mysql_wait_timeout }}