Skip to content

Commit dda7bf9

Browse files
committed
Moved an optimization into handle() so that it becomes more visible
1 parent a9fb721 commit dda7bf9

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

cities_light/management/commands/cities_light.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,10 @@ def handle(self, *args, **options):
141141
elif url in COUNTRY_SOURCES:
142142
self.country_import(items)
143143
elif url in TRANSLATION_SOURCES:
144+
# free some memory
145+
if getattr(self, '_country_codes', False):
146+
del self._country_codes
147+
del self._region_codes
144148
self.translation_parse(items)
145149

146150
reset_queries()
@@ -326,16 +330,13 @@ def city_import(self, items):
326330
city.save()
327331

328332
def translation_parse(self, items):
329-
# free some memory
330-
self._country_codes = None
331-
self._region_codes = None
332-
333333
if not hasattr(self, 'translation_data'):
334334
self.country_ids = Country.objects.values_list('geoname_id',
335335
flat=True)
336336
self.region_ids = Region.objects.values_list('geoname_id',
337337
flat=True)
338338
self.city_ids = City.objects.values_list('geoname_id', flat=True)
339+
339340
self.translation_data = {
340341
Country: {},
341342
Region: {},

0 commit comments

Comments
 (0)