mirror of
https://github.com/djohnlewis/stackdump
synced 2025-04-05 01:03:27 +00:00
Reduced the number of database calls for the retrieve_sites view helper.
This commit is contained in:
parent
f4e2c64de7
commit
3b1393d9c2
@ -523,9 +523,12 @@ def retrieve_sites(results):
|
|||||||
site_keys.add(r['siteKey'])
|
site_keys.add(r['siteKey'])
|
||||||
|
|
||||||
# retrieve the site objects from the database
|
# retrieve the site objects from the database
|
||||||
|
site_objects = Site.select(IN(Site.q.key, list(site_keys)))
|
||||||
|
|
||||||
|
# convert results into a dict with site key as the key
|
||||||
sites = { }
|
sites = { }
|
||||||
for site_key in site_keys:
|
for s in site_objects:
|
||||||
sites[site_key] = Site.select(Site.q.key == site_key).getOne()
|
sites[s.key] = s
|
||||||
|
|
||||||
# place site objects into the dict
|
# place site objects into the dict
|
||||||
for r in results:
|
for r in results:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user