标签: django database django-models django-queryset
我正在阅读this documentation,并说它应该使用filter(),exclude(),order_by()为您经常查询的字段添加索引。
filter()
exclude()
order_by()
我同意这个陈述,但如果实际数据库上没有索引,这个补充会真的有用吗?
答案 0 :(得分:3)
将db_index = True添加到字段然后运行makemigrations将生成一个迁移,在applied时向您的数据库添加适当的索引。
db_index = True
makemigrations