MySQL 5 复制查询

发布于 2024-08-10 04:16:38 字数 84 浏览 5 评论 0原文

我有一个包含大量数据的表......数以千计的行。我打算拥有这张桌子的复制品。我可以只在副本上建立索引而不在原始表上建立索引吗,这样在原始表中插入会很快。

I have a table which contains a large volume of data...thousands of million of rows. I am planning to have a replica of this table. Can I have an index on replica only not on the original table, so that insertion in the orignal table will be fast.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

温柔嚣张 2024-08-17 04:16:38

是的,这是可能的。您甚至可以更改复制表的底层引擎(常见的情况是将 InnoDB 表复制到另一台服务器,将引擎更改为 MyISAM 并向相应的表列添加全文索引)。

Yes that's possible. You can even change the underlying engine of the replicated table (a common scenario is to replicate a InnoDB table to another server, change the engine to MyISAM and add a full-text-index to the appropriate table columns).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文