0

我需要对 SomeModel 的所有实例进行批量查询,并用它们的创建日期和最后一次更新来注释它们。这是我尝试过的并且非常慢:

query = SomeModel.objects.all()
for entry in query:
    last_updated_date = entry.details.history.last().history_date
    created_date = entry.details.history.first().history_date
    csv_writer.writerow([entry.name, last_updated_date, created_date])

我该如何优化代码?我想问题是我正在做很多 SELECT 查询,而可能会做一个更复杂的查询。

4

1 回答 1

0

你可以这样尝试(使用子查询):

from django.db.models import OuterRef, Subquery
from simple_history.models import HistoricalRecords

histories = HistoricalRecords.objects.filter(pk=OuterRef('details__history')).order_by('history_date')

SomeModel.objects.annotate(created_date=Subquery(histories.values('history_date')[:1])).annotate(last_updated==Subquery(histories.order_by('-history_date').values('history_date')[:1]))

仅供参考:这是一个未经测试的代码。

于 2019-04-02T09:00:15.767 回答