开发者

would creating multiple tables instead of single be better in a lot of connections

开发者 https://www.devze.com 2023-04-01 16:32 出处:网络
If I\'m creating a database which would be used by lot of differe开发者_如何转开发nt users at the same time constantly inserting and retrieving rows, would multiple tables be better? If not speed-wise

If I'm creating a database which would be used by lot of differe开发者_如何转开发nt users at the same time constantly inserting and retrieving rows, would multiple tables be better? If not speed-wise, would it be better deadlock-wise?


For a better management of concurrent queries...

  • use the InnoDB engine instead of MyISAM

  • if you really have a lot of connections, it could be wise to use MySQL Cluster

0

精彩评论

暂无评论...
验证码 换一张
取 消