Last active
November 26, 2017 07:05
-
-
Save bosukh/dec5f94b1fb0d570962df8a219275b31 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
def test_sqlalchemy_orm_update(n=100000): | |
init_sqlalchemy(False) | |
t0 = time.time() | |
customer = Customer.__table__ | |
for i in xrange(1, n+1): | |
stmt = customer.update().where(customer.c.id==i).values( | |
{'name': 'NEW_NAME ' + str(i)} | |
) | |
DBSession.execute(stmt) | |
DBSession.commit() | |
print( | |
"SQLAlchemy ORM: Total time for " + str(n) + | |
" records " + str(time.time() - t0) + " secs") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment