- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果不是,我可以做些什么来改进它?目前,仅使用我们的开发数据进行评估需要 13 秒。原始 SQL 的想法?
suppliers = models.Supplier.objects.all().order_by('company')
for supplier in suppliers :
sup = {}
sup['company'] = supplier.company
sup['supplies'] = get_supplies(1, supplier.uuid)
sup['category'] = 'Supplier'
if isocode == None :
addresses = models.Address.objects.filter(company = supplier.company).iterator()
else :
addresses = models.Address.objects.filter(company = supplier.company, country_iso = isocode).iterator()
sup['contacts'] = list(models.Contact.objects.filter(address__in=addresses))
company_list.append(sup)
class SupplierManager(models.Manager):
def suppliers_for_panel(self, bought_in_control_panel_id):
return self.filter(supplies__bought_in_control_panel__id = bought_in_control_panel_id).filter(company__hidden=0).order_by('company__name')
class Supplier(models.Model):
uuid = UUIDField(primary_key=True)
company = models.ForeignKey(Company, db_column='company_uuid',null=True, blank=True)
sector = models.ForeignKey(CustomerSector, db_column='sector_uuid',null=True, blank=True,verbose_name=_('Sector'))
account_number = models.CharField(null=True, blank=True,max_length=255,verbose_name=_('Account No'))
reference = models.CharField(null=True, blank=True,max_length=255)
notes = models.TextField(null=True, blank=True)
date_created = models.DateTimeField(null=True, blank=True, auto_now_add=True)
date_modified = models.DateTimeField(null=True, blank=True, auto_now=True)
user = UserField(null=True, blank=True)
jms_code = models.CharField(null=True, blank=True,max_length=255)
objects = SupplierManager()
def __unicode__(self):
return self.company.name
class Meta:
db_table = 'supplier'
class Contact(models.Model):
uuid = UUIDField(primary_key=True)
address = models.ForeignKey(Address, db_column='address_uuid',null=True,blank=True,verbose_name=_('Address'))
title = models.ForeignKey(Title,db_column='title_uuid',null=True, blank=True)
forename = models.CharField(null=True, blank=True,max_length=255)
surname = models.CharField(null=True, blank=True,max_length=255)
position = models.CharField(null=True, blank=True,max_length=255)
mobile = models.CharField(null=True, blank=True,max_length=255)
direct_line = models.CharField(null=True, blank=True,max_length=255)
email = models.CharField(null=True, blank=True,max_length=255)
origin = models.IntegerField(null=True, blank=True)
lead_source = models.IntegerField(null=True, blank=True)
notes = models.TextField(null=True, blank=True)
contact_status = models.ForeignKey(ContactStatus, db_column='contact_status_uuid',verbose_name=_('Contact Status'))
contact_method = models.ForeignKey(ContactMethod, db_column='contact_method_uuid',verbose_name=_('Contact Method'))
date_created = models.DateTimeField(null=True, blank=True, auto_now_add=True)
date_modified = models.DateTimeField(null=True, blank=True, auto_now=True)
user = UserField(null=True, blank=True)
jms_code = models.CharField(null=True, blank=True,max_length=255)
allow_download = models.NullBooleanField(serialize=False)
is_modified = ModifiedField(serialize=False)
def __unicode__(self):
return self.get_full_name()
def get_full_name(self):
return self.forename + " " + self.surname
class Meta:
db_table = 'contact'
class Address(models.Model):
uuid = UUIDField(primary_key=True)
company = models.ForeignKey(Company, db_column='company_uuid',null=True,blank=True,verbose_name=_('Address'))
group_name = models.CharField(null=True, blank=False,max_length=255,verbose_name=_('Corporate Group'))
line1 = models.CharField(null=True, blank=False,max_length=255,verbose_name=_('Address Line 1'))
line2 = models.CharField(null=True, blank=True,max_length=255,verbose_name=_('Address Line 2'))
line3 = models.CharField(null=True, blank=True,max_length=255,verbose_name=_('Address Line 3'))
town = models.CharField(null=True, blank=True,max_length=255)
county = models.CharField(null=True, blank=True,max_length=255)
postcode = models.CharField(null=True, blank=True,max_length=255)
country_iso = models.CharField(null=True, blank=True,max_length=255)
telephone = models.CharField(null=True, blank=True,max_length=255)
fax = models.CharField(null=True, blank=True,max_length=255)
email = models.CharField(null=True, blank=True,max_length=255)
website = models.CharField(null=True, blank=True,max_length=255)
description = models.CharField(null=True, blank=True,max_length=255)
date_created = models.DateTimeField(null=True, blank=True, auto_now_add=True)
date_modified = models.DateTimeField(null=True, blank=True, auto_now=True)
user = UserField(null=True, blank=True)
jms_code = models.CharField(null=True, blank=True,max_length=255)
allow_download = models.NullBooleanField(serialize=False)
notes = models.CharField(null=True, blank=True,max_length=255)
is_modified = ModifiedField(serialize=False)
def __unicode__(self):
if self.description in [ '', None ] :
if self.line1 not in [ '', None ] :
return self.line1
return self.uuid
return self.description
def asList (self) :
return [ b for b in self.line1, self.line2, self.line3, self.town, self.county if b not in ('', None) ]
class Meta:
db_table = 'address'
verbose_name_plural = ('Addresses')
最佳答案
首先,将 .select_related('company')
添加到您的初始供应商查询中。现在,每次在循环中访问 supplier.company
时,您都会发出一个额外的查询。
查询膨胀的其余部分来自分别选择 Address
和 Contact
。这是每次循环都必须发出的另外两个查询。如果您使用的是 Django 1.4+,您可以尝试使用 prefetch_related
把那些剪掉。如果您运行的是较低版本,您可以尝试 django-batch-select它为您提供了类似的功能。这可能需要重新考虑一下您的方法,以找出一种同时选择所有内容的方法。
关于django - 这个查询集循环是最优的吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11393545/
我正在尝试在r中编写代码,以便找到单变量正态分布的最大似然(而不是对数似然)值。我知道还有其他方法,但是我需要深入了解数值优化才能进行进一步的工作。当我调用'optim'函数时,它似乎根本不会进行迭代
最近我一直在用 php + mysql 做一个相当大的项目。现在我担心我的 mysql。我应该怎么做才能使我的 mysql 尽可能优化?把你知道的都说出来,我将非常感激。 第二个问题,我在每次加载页面
我不太了解 InitializeCriticalSectionAndSpinCount 的文档: http://msdn.microsoft.com/en-us/library/windows/des
我们公司有几种不同的获取潜在客户的方式,以及我们处理的几种类型的潜在客户。每种类型的潜在客户之间只有微小的差异,并且大部分信息与一种或多种其他潜在客户类型共享或相关。我和我的团队正在尝试使用 Solr
ϵ-贪婪策略 我知道 Q-learning 算法应该尝试在探索和利用之间取得平衡。由于我是该领域的初学者,因此我想实现一个简单版本的探索/利用行为。最佳 epsilon 值 我的实现使用 ϵ 贪婪策略
我是一名优秀的程序员,十分优秀!