Eerste punt:een python db-api.cursor
is een iterator, dus tenzij je echt nodig om een hele batch in één keer in het geheugen te laden, kunt u gewoon beginnen met het gebruik van deze functie, dwz in plaats van:
cursor.execute("SELECT * FROM mytable")
rows = cursor.fetchall()
for row in rows:
do_something_with(row)
je zou gewoon:
cursor.execute("SELECT * FROM mytable")
for row in cursor:
do_something_with(row)
Als de implementatie van uw db-connector deze functie nog steeds niet goed gebruikt, wordt het tijd om LIMIT en OFFSET aan de mix toe te voegen:
# 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)