My Photo
Name:
Location: Phoenix, Arizona, United States

BollywoodSARGAM.com (Bollywood SARGAM) aim is to provide a platform for upcoming Hollywood movie directors, producers, actors, actress and film makers through which they can promote their movies and talents to audiences worldwide. BollywoodSARGAM.com acts as a bridge between Hollywood and Bollywood filmmakers and Fans introducing them to each other's movies and content. We have prominent ranks on all search engine on "Hollywood Actress" "Hollywood Actor" "Bollywood Actress" "Bollywood Actors" search terms. We promote your upcoming movies and talents FREE OF CHARGE to our 1,05,500+ unique daily visitors viewing 7,20,000 pages everyday (source AdBrite and Alexa).

Thursday, March 15, 2007

Tips on MySQL Database Optimization

* Use MySQL Commands like EXPLAIN, EXPLAIN EXTENDED and ANALYZE often to understand queries you are running
* Create indexes on fields you feel are most likely to be used in your queries.
* Design your tables with emphasis on proper data type. Do not use Data type like TEXT for fields like title of posts.
* Use proper table field names. A column named "t" will not make much sense to other programmers working with you, use fields like "post_title" so that one gets idea of what the column is for.
* Use mysql_pconnect and mysql_connect with intelligence. Do not blindly use mysql_pconnect just because it keeps a connection open for multiple uses. It can kill your server.

MySQL EXPLAIN Syntax : http://dev.mysql.com/doc/refman/5.0/en/explain.html

MySQL ANALYZE Syntax : http://dev.mysql.com/doc/refman/5.0/en/analyze-table.html

That is it for now.

Regards

BollywoodSARGAM Database Development Team

0 Comments:

Post a Comment

<< Home