在 InnoDB 上写入,从 MyIsam 读取

发布于 2024-09-17 19:44:25 字数 149 浏览 12 评论 0原文

我正在开发一个需要大量数据库插入的项目。 我还需要能够使用全文搜索之类的东西来检索数据。

是否可以使用 2 个具有相同精确数据的表(oen MyIsam 和一个 InnoDb)来实现此效果?

在 InnoDb 上写入,然后以某种方式读取 MyIsam?

I'm working on a project that requires lots of database inserts.
I also need to be able to use something like full-text-search to retrieve the data.

Is is possible to use 2 tables, with the same exact data, oen MyIsam and one InnoDb to achieve this effect?

Write on the InnoDb, and somehow read off of the MyIsam?

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

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

发布评论

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

评论(2

谁的年少不轻狂 2024-09-24 19:44:25

是的,使用复制。在“主”服务器上使用 InnoDB。在从站上,将表类型更改为MyISAM,并添加全文索引。除了从正确的服务器插入和选择之外,您无需在代码中执行任何操作。

Yes, use replication. On the "master" server use InnoDB. On the slave, change the table type to MyISAM and add the full text index. You won't have to do anything in code except insert and select from the proper servers.

莫相离 2024-09-24 19:44:25

是的,写入时写入两个表,搜索时从MyISAM表中读取。

我认为没有办法自动写入这两个表,它必须在您的应用程序代码中完成。

Yes, write to both tables when writing and read from the MyISAM table when searching.

There's no way to automatically write to both tables I think, it has to be done in your application code.

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