tags:

views:

43

answers:

2

What is the best method to partition a MySQL table(MyISAM)? table contains product details arranged by auto incrementing product id. It is expected to contain millions of records, so performance is essential.

+3  A: 

The article MySQL 5.1 partitions in practice gives some good tips and information on partitioning.

Andy West
+1  A: 

This too is a nice article explaining your requirement http://dev.mysql.com/tech-resources/articles/performance-partitioning.html

zapping