Webdevelopment
Drupal
Betriebssysteme
Design
Sonstige
So., 01/07/2012 - 20:40
Body
- http://drupal.org/node/51263
- http://www.huschi.net/12_302_de-mysql-tuning-vom-feinsten.html
- http://serversupportforum.de/forum/sql/14308-mysql-performance-tuning-mit-tuning-primer-sh-script.html
- http://www.xaprb.com/blog/2010/02/07/how-often-should-you-use-optimize-table/
- http://www.debianhelp.co.uk/mysqlperformance.htm
- http://www.pc-erfahrung.de/sonstiges/webdesignwebentwicklung/mysql-abfragen-optimieren-und-slow-query-auffinden.html
- http://www.askapache.com/mysql/performance-tuning-mysql.html Siehe auch TOOLS
- https://launchpad.net/mysql-tuning-primer
Video
http://videos.cpanel.net/mysql-optimization/
Drupal Module
http://drupal.org/project/db_maintenance http://drupal.org/node/1722250
Basis Check aller tabellen
mysqlcheck -o -p -all--databases
EXPLAIN
Nutze EXPLAIN um die prüfen was genau vor sich geht
https://opensource.com/article/17/5/speed-your-mysql-queries-300-times
Slow query log
Aktiviere slow query log
- long_query_time = 0.2
- slow_query_log = 1
- log_output = FILE
- slow_query_log_file = /var/log/mariadb-slow.log
- log_queries_not_using_indexes
Stelle ich z.B. fest, dass eine wachsende Tabelle anfangs schnelle Querys hat und dann immer langsamer wird......untersuchen
Webdevelopment
Add new comment