CREATE TABLE `mytable` (
`attachid` int(15) NOT NULL auto_increment,
...
...
) ENGINE=MyISAM PACK_KEYS=1 CHECKSUM=1
My create table statement looks like as shown above. If I omit PACK_KEYS and checksum will it improve the insert/ update speed. Is this option helping to make selects faster?