Jump to content

MyISAM partial conversion


Recommended Posts

Posted

Im courently looking for optimizations to mysql, im between moving to MariaDB and keep MyISAM or moving to innoDB some tables

Right now i have the next tables to InnoDB:
gaadmin_login_logs, gaerror_logs, gasearch_keywords, gasearch_visitors

gasessions(MEMORY)

i wonder if moving the members table would make any difference, or any other table. I dont feel confident on moving the posts table yet

Posted

I moved users and gallery images.
Performance is visible better. Previously we have had a lot of LOCKS on members and pictures. Now those disapeard.
Somebody told me that InnoDB is slower. We have founded some benchmarks showing that read is slower on InnoDB, but when we have a huge ammount of UPDATEs and INSERTs, it's much efficient to have this table as InnoDB, because lock is on certain ROW not on whole TABLE

Posted

InnoDB excels at high-contention situations. It's slower than myisam for some things, faster for others.

Percona originally made their name as a Mysql clone with a better InnoDB.

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...