Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我发现 ultramysql 符合我的要求。但它没有文档,也没有windows二进制包。
我有一个非常依赖互联网下载和 mysql 插入的程序。所以我使用 gevent 来解决多下载任务的问题。在我下载网页并解析网页后,我可以将数据插入到 mysql 中。
monkey.patch_all() 是否使 mysql 操作异步?
谁能告诉我正确的方法。
由于其异步功能,Postgres 可能更适合
我认为一种解决方案是使用 pymysql。由于 pymysql 使用 python 套接字,在猴子补丁之后,应该可以与 gevent 一起使用。