I would recommend the following additional options:
# creates a innodb file per table instead of having all the tables in a single tablespace file innodb_file_per_table
# increase the max allowed packet to a large size for file imports max_allowed_packet = 32M
# the InnoDB pool size. use up to 80% available RAM for dedicated machines, and as much # as you can spare for development machines also depending on the size of the databases # you will be running so that as much of the database as possible fits into memory innodb_buffer_pool_size = 512M
I would recommend the following additional options:
ReplyDelete# creates a innodb file per table instead of having all the tables in a single tablespace file
innodb_file_per_table
# increase the max allowed packet to a large size for file imports
max_allowed_packet = 32M
# the InnoDB pool size. use up to 80% available RAM for dedicated machines, and as much
# as you can spare for development machines also depending on the size of the databases
# you will be running so that as much of the database as possible fits into memory
innodb_buffer_pool_size = 512M