3👍
✅
Silly me, this was addressed in the Django FAQ.
Needed to clear the DB query cache while in DEBUG mode.
from django import db
db.reset_queries()
👤Greg
1👍
I think a select * from mapDenormalize
and loading the result into memory will always be a bad idea. My advise is – spread script into chunks. Use LIMIT
to get data in portions.
Get first portion, work with it, close to cursor, and then get the next portion.
- [Django]-Writing Testcases for google cloud endpoints API written on top of django
- [Django]-Are there any Django packages to create signed urls for Google Cloud Storage resources?
- [Django]-Complex reverse query in Django
Source:stackexchange.com