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.
import MySQLdb
MySQLdb.connect有时无法连接失败,有没有办法设置超时并重复尝试而不编写应用程序特定代码
MySQLdb.connect
将您的连接代码抽象为您可以调用的方法并让它返回连接。在该方法中,最多尝试连接到数据库 3 或 5 次。在每次尝试之间执行 time.sleep(.01)。那是百分之一秒。如果你能少走一点,那就更好了。