Första punkten:en python db-api.cursor
är en iterator, så om du inte verkligen behöver för att ladda en hel batch i minnet på en gång kan du bara börja med att använda den här funktionen, dvs istället för:
cursor.execute("SELECT * FROM mytable")
rows = cursor.fetchall()
for row in rows:
do_something_with(row)
du kan bara:
cursor.execute("SELECT * FROM mytable")
for row in cursor:
do_something_with(row)
Sedan om din db-kontakts implementering fortfarande inte använder den här funktionen på rätt sätt, är det dags att lägga till LIMIT och OFFSET till mixen:
# py2 / py3 compat
try:
# xrange is defined in py2 only
xrange
except NameError:
# py3 range is actually p2 xrange
xrange = range
cursor.execute("SELECT count(*) FROM mytable")
count = cursor.fetchone()[0]
batch_size = 42 # whatever
for offset in xrange(0, count, batch_size):
cursor.execute(
"SELECT * FROM mytable LIMIT %s OFFSET %s",
(batch_size, offset))
for row in cursor:
do_something_with(row)