1. 程式人生 > >高性能mysql第6章

高性能mysql第6章

tps targe clas -a 大小 span min table incr

第6章,優化配置 https://www.cnblogs.com/musings/p/5913157.html

1:服務器讀取的配置文件,可以使用下面的命令查詢

admin@iZwz92c0zpe8t65qe996ckZ:~$ which mysqld
/usr/sbin/mysqld

使用mysqld查詢配置

root@iZwz92c0zpe8t65qe996ckZ:/home/admin# /usr/sbin/mysqld --verbose --help | grep -A 1 ‘Default options‘
Default options are read from the following files in
the given order: /etc/my.cnf /etc/mysql/my.cnf ~/.my.cnf
那麽在/etc/mysql/my.cnf中進行mysql配置,就會別mysql服務器讀取
2:配置的設置都是小寫的,可以用-或者_是一樣的 ,例如下面是一樣的
root@iZwz92c0zpe8t65qe996ckZ:/home/admin# /usr/sbin/mysqld --auto-increment-offset=1
root@iZwz92c0zpe8t65qe996ckZ:/home/admin# /usr/sbin/mysqld --auto_increment_offset=1

3:配置

table_cache_size  --
緩存表的(多少)大小,要等到下一個線程打開表的時候才生效

mysql 優化 配置

https://www.cnblogs.com/thrillerz/p/3907421.html https://www.cnblogs.com/musings/p/5913157.html

高性能mysql第6章