Ruby EventMachine 与 PostgreSQL
我知道对于 mysql em-mysql 作为 MySQL 和 Active Record 的异步接口驱动程序存在,经过一些修改,可以立即使用。我相信Sequel已经具备了这个能力。我还了解到 pg gem 公开了 PostgreSQL 的本机异步 API。
我的问题:当后备数据库是 PostgreSQL 时,是否有任何 Ruby ORM 可以与 EventMachine 本机互操作?如果没有,需要做什么来改造 Sequel 以支持异步 PostgreSQL?活动记录?
I know that for mysql em-mysql exists as an asynchronous interface driver to MySQL and that Active Record, with some modification, can make immediate use of. I believe Sequel has this capability already. I also understand that the pg gem exposes PostgreSQL's native async API.
My question: is there any Ruby ORM that natively interoperates with EventMachine when the backing database is PostgreSQL? If not, what needs to be done to retrofit Sequel to support async PostgreSQL? ActiveRecord?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这看起来适用于 ActiveRecord:
https://github.com/mperham/em_postgresql
This looks like it works with ActiveRecord:
https://github.com/mperham/em_postgresql