我正在使用与localhost数据库的非常简单的连接:
engine = sqlalchemy.create_engine('mysql+mysqlconnector://usr:pwd@localhost/db')
engine = engine.connect()
data = engine.execute('select * from table')
'table'有500行。然后我在'data'上运行cProfiler,在那里我找到了:
ncalls tottime percall cumtime percall filename:lineno(function)
54086 127.261 0.002 127.261 0.002 {method 'recv' of '_socket.socket' objects}
这里http://bugs.python.org/issue3766似乎解决了将TCP_NODELAY设置为1.我的问题是,我在哪里设置它?
答案 0 :(得分:0)
我认为你必须使用engine.setsockopt(SOL_TCP,TCP_NODELAY,1)
,但不是很确定。