use .exists(), skip a join and 7 other queries

This commit is contained in:
Jeff Balogh 2010-10-21 12:10:15 -07:00
Родитель 554c23ca9b
Коммит 804ee3d020
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -172,8 +172,7 @@ class UserProfile(amo.models.ModelBase):
@amo.cached_property
def is_developer(self):
return bool(self.addons.filter(authors=self,
addonuser__listed=True)[:1])
return self.addonuser_set.exists()
@property
def name(self):