将 eventlet 与 SQLAlchemy 结合使用
我正在使用 eventlet 从 此示例。 我想使用 SQLAlchemy 存储网页的内容和元数据以供进一步处理。可以将 SQLAlchemy 与 eventlet 一起使用吗?谁能提供一个简单的例子吗?
I'm using eventlet to build a simple website crawler starting from this example.
I would like to use SQLAlchemy to store web pages' content and metadata for further processing. It's possible to use SQLAlchemy along with eventlet? Could anyone provide a simple example?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
OpenStack Compute (Nova) 项目使用 SQLAlchemy 和 eventlet,您可能对 他们的方法。
The OpenStack Compute (Nova) project uses SQLAlchemy and eventlet, you might be interested in their approach.
抱歉回复晚了。
这实际上取决于您使用的数据库连接库。
eventlet.monkey_patch()
。monkey_patch()
就可以解决问题。Sorry for late reply.
It would really depend on database connection library you use.
eventlet.monkey_patch()
.monkey_patch()
would do the trick.