Is a table with columns like tid(int) zid(int) direction(tinyint) type(tinyint)
with quite heavy read and write operations, as well as joining to other tables in myisam, better to be engined in myisam or innodb?
I was told that innodb had worse write performance than that of myisam. is that true? and innodb is also having a table lock like myisam whenever data is not extracted with primary key. Is there any techniques to be used to join tables between tables with myisam and innodb?