Created
December 12, 2012 11:56
-
-
Save crynobone/4267222 to your computer and use it in GitHub Desktop.
my.cnf configuration for Macbook Air using MAMP.
This file contains 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
[mysqld] | |
default-storage-engine=InnoDB | |
collation-server=utf8_unicode_ci | |
character-set-server=utf8 | |
init-connect='SET NAMES utf8' | |
table_cache=250 | |
query_cache_size=0 | |
query_cache_type=0 | |
innodb_file_per_table | |
innodb_buffer_pool_size=10240M | |
innodb_file_format=barracuda | |
innodb_flush_method=O_DIRECT | |
innodb_flush_log_at_trx_commit=1 | |
innodb_read_io_threads=16 | |
innodb_write_io_threads=16 | |
innodb_io_capacity=1000 | |
innodb_thread_concurrency=4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment