I\'ve been working on my development database and have tweaked its performance.
However, to my surprise I can\'t find a way to export the indexes to my production da
you can use the following command to take a dump
mysqldump -u [USERNAME] -p [DBNAME] | gzip > [/path_to_file/DBNAME].sql.gz
and indexes will be copied automatically.