Currently i'm using Alchemy as a ORM, and I look for a way to speed up my insert operation, I have bundle of XML files to import
for name in names:
p=Product()
p.name="xxx"
session.commit()
i use above code to insert my data paser from batch xml file to mysql,it's very slow also i tried to
for name in names:
p=Product()
p.name="xxx"
session.commit()
but it seems didn't change anything