You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 22, 2020. It is now read-only.
I found some problem when using umysql lib.
i use some db pool to reuse the connection obj.
In case gevent timeout during the connection obj searching data from db,then the connection obj can't get right data after. the testing code below,expecting to your solution.
# -*- coding:utf-8 -*- # author:Ewing# date:2014-2-20''' sql hereCREATE DATABASE test;USE test;CREATE TABLE IF NOT EXISTS `tb_user` ( `UserId` int(11) NOT NULL, `LastLoginTime` int(11) NOT NULL, PRIMARY KEY (`UserId`)) ENGINE=MyISAM DEFAULT CHARSET=latin1;INSERT INTO `tb_user` (`UserId`, `LastLoginTime`) VALUES(1, 1392859212);'''fromgeventimportmonkey; monkey.patch_all()
importtimefromgeventimportTimeoutimportumysqlc=umysql.Connection()
c.connect('10.1.1.18', 3306, 'root','think1dfh@RUNpadm', 'test', False, 'utf8')
looptime=100000# FOR TEST set 1 or 100000defdoing():
start=time.time()
foriinxrange(looptime):
sql='UPDATE tb_user SET LastLoginTime = %s WHERE UserId = 1'%int(time.time())
c.query(sql,())
runtime=time.time()-startprint'do all runtime: %s'%runtimedefafterdoing():
sql='SELECT * FROM tb_user WHERE UserId = 1'result_set=c.query(sql,())
print'afterdoing result_set:',result_set#return (1L, 0L) case timeout then <umysql.ResultSet object> nomaltimeout=Timeout(1)
timeout.start()
try:
doing()
exceptTimeout:
print'Could not complete'afterdoing()
print'end'
The text was updated successfully, but these errors were encountered:
I found some problem when using umysql lib.
i use some db pool to reuse the connection obj.
In case gevent timeout during the connection obj searching data from db,then the connection obj can't get right data after. the testing code below,expecting to your solution.
The text was updated successfully, but these errors were encountered: