在 InnoDB 上写入,从 MyIsam 读取
我正在开发一个需要大量数据库插入的项目。 我还需要能够使用全文搜索之类的东西来检索数据。
是否可以使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,使用复制。在“主”服务器上使用 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.
是的,写入时写入两个表,搜索时从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.