Answer the question
In order to leave comments, you need to log in
Is it possible to not lock rows in InnoDB on selective update?
Being a total greenfield database neophyte, I'm wondering if it's safe to disable locks on a database in the following situation.
For example, there is the following table.
CREATE TABLE `users` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`score` int(11) DEFAULT NULL,
`rating` int(10) unsigned DEFAULT NULL,
... ,
PRIMARY KEY (`id`),
) ENGINE=InnoDB AUTO_INCREMENT=... DEFAULT CHARSET=utf8;
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question