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 for Low Memory Use
- Optimize MySQL Performance With MySQLTuner
- MySQL Performance Monitoring and Optimization Tools
- MySQL Concatenate: Adding String At The End Of Field Data
- Howto: How to Reset the MySQL Root Password
- Linux Terminal Speed Performance Comparison
- MySQL: Remove Duplicate Entries
- Slow Query Log Analyzes Tools
- MDB Tools to export (migrate) from mdb (Microsoft Access format) to MySQL
- Migrate existing Ext3 filesystems to Ext4
Popular Related Items »
Incoming search terms
- freebsd mysql optimization
- mysql xen performance
- freebsd mysql performance
- freebsd mysql optimize
- mysql insert optimization
- mysql archive engine performance
- centos mysql optimize
- mysql xen
- centos mysql optimization
- debian optimization
- centos optimize
- mysql optimization
- xen mysql performance
- MySQL network optimization
- mysql performance tips
- optimize mysql freebsd
- centos optimize mysql
- mysql optimization on centos
- freebsd optimize mysql
- optimize mysql on freebsd
- optimization mysql in windows
- xen performance centos
- inet_aton perfom
- linux kernel optimization for mysql
- mysql
- mysql ext3 optimisation
- mysql ext3 optimization
- mysql freebsd 7 2 optimization
- mysql optimization centos
- ext3 optimization for mysql
- debian performance tips
- ubuntu mysql optimization
- mysql ubuntu optimization
- mysql performance xen optimization
- ubuntu performance optimization
- mysql string performance
- mysql ubuntu low insert performance
- mysql ubuntu optimalisation
- ubuntu optimization for mYSQL
- ubuntu mysql performance tips
- ubuntu mysql performance simple
- mysql ubuntu optimization bin
- mysql ubuntu performance
- mysql windows performance tips

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.