有谁知道 python 的异步 mysql 库吗?

发布于 2024-08-14 07:51:59 字数 131 浏览 5 评论 0原文

我一直在研究 python 的非阻塞服务器(tornado、twisted 等),但如果没有与数据库的非阻塞连接,似乎会失去很多好处。有谁知道是否有任何项目可以解决这个问题? (通过非阻塞la node.js)

编辑:澄清了我的问题

I've been looking into non-blocking servers for python (tornado, twisted etc) but a lot of the benefits seems to be lost if there's no non-blocking connection to the database. Does anyone know if there are any projects that take care of this? (by non-blocking a la node.js)

Edit: Clarified my question

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

半衾梦 2024-08-21 07:51:59

您可以使用 Twisted 的 ADBAPI 来包装同步 DBAPI 实现。

例如:

from twisted.internet import reactor
from twisted.enterprise import adbapi

def result(rows):
    for row in rows:
        print row

    reactor.stop()

def fail(err):
    err.printDetailedTraceback()
    reactor.stop()

pool = adbapi.ConnectionPool('sqlite3', 'animals.db')
d = pool.runQuery('SELECT * FROM animals', ())
d.addCallbacks(result, fail)
reactor.run()

You can use Twisted's ADBAPI to wrap a synchronous DBAPI implementation.

E.g.:

from twisted.internet import reactor
from twisted.enterprise import adbapi

def result(rows):
    for row in rows:
        print row

    reactor.stop()

def fail(err):
    err.printDetailedTraceback()
    reactor.stop()

pool = adbapi.ConnectionPool('sqlite3', 'animals.db')
d = pool.runQuery('SELECT * FROM animals', ())
d.addCallbacks(result, fail)
reactor.run()
波浪屿的海角声 2024-08-21 07:51:59

查看我们新的 txMySQL 项目,它现在可以做到这一点。

这是二进制 MySQL 协议的本机异步实现。

Check out our new txMySQL project which can do this now.

This is a native asynchronous implementation of the binary MySQL protocol.

爱冒险 2024-08-21 07:51:59

这样做的方法是在单独的线程中生成数据库查询。对于 Twisted,您可以使用 deferToThread()deferToThreadPool()(请参阅 API 文档1)。

The way you do that is by spawning database queries in a separate thread. With Twisted you can use deferToThread() or deferToThreadPool() (see the API docs1).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文