Mysql 到 Mysql - 使用 db40/drs 进行 Hibernate 复制?
我想使用 drs 进行 Mysql 到 Mysql 复制。是否可以在不将数据存储在 db4o 中的情况下执行相同的操作?我只想使用 Hibernate 来使用 drs 复制。与 drs 有什么积极/消极的经历吗?
I would like to do Mysql to Mysql replication using drs. Is it possible to do the same without storing data in db4o? I just want to use drs replication using Hibernate. Any positive/negative experience with drs?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有用。
只需使用 #begin() 调用,该调用将 2 个 org.hibernate.cfg.Configuration 作为参数:
https://source. db4o.com/db4o/trunk/drs/src/core/com/db4o/drs/hibernate/HibernateReplication.java
它将创建一个复制ReplicationSession,您可以使用它来复制数据。
例如:
it works.
just use the #begin() call that takes 2 org.hibernate.cfg.Configuration as arguments in here:
https://source.db4o.com/db4o/trunk/drs/src/core/com/db4o/drs/hibernate/HibernateReplication.java
it will create a replication ReplicationSession which you can use to replicate data.
for example: