turning up the threads and limit

database
Mark Cotton 2023-09-19 12:46:12 -05:00
parent ea2c59d810
commit fdd0b2575c
1 changed files with 2 additions and 2 deletions

View File

@ -56,7 +56,7 @@ def download(args):
if __name__ == '__main__':
pool = Pool(4)
pool = Pool(16)
print("starting up...")
@ -114,7 +114,7 @@ if __name__ == '__main__':
WHERE
download.status == ?
AND camera.id == ?
LIMIT 500;'''
LIMIT 2000;'''
results = cur.execute(sql, ('new', 4))