MySQL Optimization and Performance Tips
- Store IP addresses as INT, not CHAR – by using INET_ATON to convert from a string to an integer and by using INET_NTOA to convert from an integer to a string
- Use non-persistent connection, since they are light-weight – much faster create than compared Oracle or PostgreSQL
- Use the right storage engine; this means for example the ARCHIVE-engine for logs and other kind of INSERT-only operations, and the MEMORY-engine for fast in-memory data that should go away on server restart
More general MySQL optimization and performance tips are available in this Slideshow.
Related posts:
- Optimize MySQL Performance With MySQLTuner
- Optimize MySQL for Low Memory Use
- MySQL Performance Monitoring and Optimization Tools
- MySQL Concatenate: Adding String At The End Of Field Data
- Linux Terminal Speed Performance Comparison
- Howto: How to Reset the MySQL Root Password
- Bash shortcuts tips and tricks
- Installing Xen on Debian Etch 4.0
- Tomcat Performance: Linux faster than Windows
- Howto Wiretap – Sniff Network Traffic
Popular Related Items »
Incoming search terms
- mysql xen performance
- freebsd mysql optimization
- freebsd mysql optimize
- freebsd mysql performance
- mysql insert optimization
- centos mysql optimization
- centos mysql optimize
- mysql archive engine performance
- mysql xen
- xen mysql performance
- centos optimize
- debian optimization
- mysql optimization
- mysql performance tips
- optimize mysql freebsd
- mysql optimization on centos
- MySQL network optimization
- freebsd optimize mysql
- ubuntu mysql optimization
- centos optimize mysql
- mysql optimization centos
- optimize mysql on freebsd
- mysql ext3 optimisation
- optimization mysql in windows
- mysql freebsd 7 2 optimization
- xen performance centos
- inet_aton perfom
- linux kernel optimization for mysql
- mysql
- mysql ext3 optimization
- ext3 optimization for mysql
- debian performance tips
- mysql performance xen optimization
- mysql string performance
- win mysql performance tips
- mysql ubuntu low insert performance
- mysql ubuntu optimalisation
- mysql ubuntu optimization
- mysql performance on centos
- ubuntu performance optimization
- mysql ubuntu optimization bin
- ubuntu optimization for mYSQL
- ubuntu mysql performance tips
- mysql ubuntu performance

Cody said,
June 15, 2008 @ 16:05
Good point, this improved my SQL performance.
Thanks,
Cody
http://www.ticket-vault.com
Satya Prakash Karan said,
October 12, 2008 @ 12:08
Good simple and stringht.