MyISAM 用于日志记录和导出?
在 o'Reilly 的“高性能 MySQL”中,我读到 MyISAM 可能是记录情况下 InnoDB 的一个很好的替代方案。 所以我们对某些表的INSERT率很高,所以可以使用MyISAM,但也有每3分钟导出一次旧数据(因此每3分钟转储和刷新表并将数据传输到另一台服务器)。有没有人经历过这种情况? MyISAM 真的是 InnoDB(我们目前正在使用的)的一个不错的选择吗? 问候
in "High Performance MySQL" from o'Reilly I've read, that MyISAM could be a good alternative to InnoDB for logging situations.
So we've a high rate of INSERTs on some tables, so MyISAM can be used, but there is also an export of old data every 3 minutes (so the table is dumped and flushed every 3 minutes and the data is transferred to another server). Has anyone experience in such a situation? Could MyISAM really be a good choice to InnoDB (which we are currently using)?
Regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用复制,在从属服务器上转储,并每天刷新主服务器。
Use replication, dump on slave, and flush the master daily.