mysql - what is "Waiting for table level lock"? -
why have many queries when using 'show processlist '
and cpu 600+% used
is there can improve mysql performance? thanks
yes, can change storage engine myisam innodb - myisam knows table level locking (when writes record, blocks whole table), while innodb knows row level locking (it locks row writing to)
Comments
Post a Comment