我的 Django 应用程序有问题。对模型Scope的查询非常慢,经过一些调试后,我仍然不知道问题出在哪里。
当我像查询数据库一样scope = Scope.objects.get(pk='Esoterik I')
需要 5 到 10 秒时。数据库的条目少于 10 个,并且主键上有一个索引,所以它太慢了。在数据库上执行等效查询时,SELECT * FROM scope WHERE title='Esoterik I';
一切正常,只需要大约 50 毫秒。
如果我查询一组结果scope_list = Scope.objects.filter(members=some_user)
,然后调用 print(scope_list) 或遍历列表元素,则会发生同样的问题。查询本身只需要几毫秒,但元素的打印或迭代再次需要 5 到 10 秒,但集合只有两个条目。
数据库后端是 Postgresql。同样的问题出现在本地开发服务器和apache上。
这里是模型的代码:
class Scope(models.Model):
title = models.CharField(primary_key=True, max_length=30)
## the semester the scope is linked with
assoc_semester = models.ForeignKey(Semester, null=True)
## the grade of the scope. can be Null if the scope is not a class
assoc_grade = models.ForeignKey(Grade, null=True)
## the timetable of the scope. can be null if the scope is not direct associated with a class
assoc_timetable = models.ForeignKey(Timetable, null=True)
## the associated subject of the scope
assoc_subject = models.ForeignKey(Subject)
## the calendar of the scope
assoc_calendar = models.ForeignKey(Calendar)
## the usergroup of the scope
assoc_usergroup = models.ForeignKey(Group)
members = models.ManyToManyField(User)
unread_count = None
更新
这是python分析器的输出。似乎 query.py 被调用了 160 万次——有点太多了。