使用python实时SQLite和PostgreSQL双向同步
是否有任何 python 库可以使客户端 SQLite 数据库与服务器端 PostgreSQL 数据库保持同步?
有针对 Java 的解决方案,例如 Daffodil 或 SymmetricDS。 python 有类似的东西吗?
Is there any python library that can keep a client-side SQLite database in sync with a server-side PostgreSQL database?
There are solutions for Java, such as Daffodil or SymmetricDS. Is there something similar for python?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SymmetricDS 是一种服务器端同步解决方案,无论使用哪种语言访问数据库,都会触发该解决方案。您应该仍然能够使用它来同步数据库,同时使用 Python 库来实际查询它们。我推荐 sqlalchemy 作为 Python 的一个很好的独立于数据库的查询层。
SymmetricDS is a server-side solution for synchronization that gets triggered regardless of which language is being used to access the database. You should still be able to use that to synchronize the databases, while using Python libraries to actually query them. I would recommend sqlalchemy as a good database-independent query layer for Python.