Skip to content

Instantly share code, notes, and snippets.

@hub-cap
Created July 8, 2013 21:04
Show Gist options
  • Select an option

  • Save hub-cap/5952484 to your computer and use it in GitHub Desktop.

Select an option

Save hub-cap/5952484 to your computer and use it in GitHub Desktop.
58 ####key_buffer = 16M
59 key_buffer_size = {{ 50 * flavor_multiplier }}M
60 ####max_allowed_packet = 16M
61 max_allowed_packet = {{ 1 * flavor_multiplier }}M
62 thread_stack = 192K
63 ####thread_cache_size = 8
64 thread_cache_size = {{ 4 * flavor_multiplier }}
65 # This replaces the startup script and checks MyISAM tables if needed
66 # the first time they are touched
67 myisam-recover = BACKUP
68 #max_connections = 100
69 #table_cache = 64
70 #thread_concurrency = 10
@rbtcollins
Copy link

key_buffer = 16M

key_buffer_size = {{ 50 * flavor_multiplier }}M

max_allowed_packet = 16M

max_allowed_packet = {{ 1 * flavor_multiplier }}M
thread_stack = 192K

thread_cache_size = 8

thread_cache_size = {{ 4 * flavor_multiplier }}

This replaces the startup script and checks MyISAM tables if needed

the first time they are touched

myisam-recover = BACKUP
{{#max_connections}}
max_connections = {{max_connections}}
{{/max_connections

table_cache = 64

thread_concurrency = 10

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment