diff options
author | unknown <heikki@hundin.mysql.fi> | 2002-07-12 20:00:15 +0300 |
---|---|---|
committer | unknown <heikki@hundin.mysql.fi> | 2002-07-12 20:00:15 +0300 |
commit | 9ae7aad20fd8ab21173a0ac716686facbb4471bb (patch) | |
tree | 196693d20703fb36932bf599992ee239e15842a5 /support-files/my-small.cnf.sh | |
parent | 8b1e397765cbb7643fbc8f9fd601d67047b0a7dc (diff) | |
download | mariadb-git-9ae7aad20fd8ab21173a0ac716686facbb4471bb.tar.gz |
my-huge.cnf.sh, my-small.cnf.sh, my-medium.cnf.sh, my-large.cnf.sh:
Update my.cnf example files to reflect InnoDB autoextend and also simplify them for InnoDB
support-files/my-large.cnf.sh:
Update my.cnf example files to reflect InnoDB autoextend and also simplify them for InnoDB
support-files/my-medium.cnf.sh:
Update my.cnf example files to reflect InnoDB autoextend and also simplify them for InnoDB
support-files/my-small.cnf.sh:
Update my.cnf example files to reflect InnoDB autoextend and also simplify them for InnoDB
support-files/my-huge.cnf.sh:
Update my.cnf example files to reflect InnoDB autoextend and also simplify them for InnoDB
Diffstat (limited to 'support-files/my-small.cnf.sh')
-rw-r--r-- | support-files/my-small.cnf.sh | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/support-files/my-small.cnf.sh b/support-files/my-small.cnf.sh index 9e7d07ec449..b8941184fe0 100644 --- a/support-files/my-small.cnf.sh +++ b/support-files/my-small.cnf.sh @@ -41,20 +41,19 @@ server-id = 1 # Uncomment the following if you are NOT using BDB tables #skip-bdb -# Uncomment the following if you are using Innobase tables -#innodb_data_file_path = ibdata1:100M +# Uncomment the following if you are using InnoDB tables #innodb_data_home_dir = @localstatedir@/ +#innodb_data_file_path = ibdata1:10M:autoextend #innodb_log_group_home_dir = @localstatedir@/ #innodb_log_arch_dir = @localstatedir@/ -#set-variable = innodb_mirrored_log_groups=1 -#set-variable = innodb_log_files_in_group=3 +# You can set .._buffer_pool_size up to 50 - 80 % +# of RAM but beware of setting memory usage too high +#set-variable = innodb_buffer_pool_size=16M +#set-variable = innodb_additional_mem_pool_size=2M +# Set .._log_file_size to 25 % of buffer pool size #set-variable = innodb_log_file_size=5M #set-variable = innodb_log_buffer_size=8M #innodb_flush_log_at_trx_commit=1 -#innodb_log_archive=0 -#set-variable = innodb_buffer_pool_size=16M -#set-variable = innodb_additional_mem_pool_size=2M -#set-variable = innodb_file_io_threads=4 #set-variable = innodb_lock_wait_timeout=50 [mysqldump] |