在大量连接中创建多个表而不是单个表会更好
如果我正在创建一个数据库,该数据库将由许多不同的用户同时不断地插入和检索行,那么多个表会更好吗?如果不是速度方面,那么死锁方面会更好吗?
If I'm creating a database which would be used by lot of different 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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了更好地管理并发查询...
使用 InnoDB 引擎而不是 MyISAM
如果您如果你确实有很多连接,那么使用MySQL Cluster可能是明智的
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