在 Django 中,检查空查询集的最有效方法是什么?
我听到了使用以下内容的建议:
if qs.exists():
...
if qs.count():
...
try:
qs[0]
except IndexError:
...
从下面的评论复制:“我正在寻找这样的语句”在 MySQL 和 PostgreSQL 中,count() 对于短查询更快,exists() 对于长查询更快,并使用 QuerySet [0] 当您可能需要第一个元素并且想要检查它是否存在时。然而,当 count() 更快时,它只会稍微快一些,因此建议在两者之间进行选择时始终使用 contains() 。”
I've heard suggestions to use the following:
if qs.exists():
...
if qs.count():
...
try:
qs[0]
except IndexError:
...
Copied from comment below: "I'm looking for a statement like "In MySQL and PostgreSQL count() is faster for short queries, exists() is faster for long queries, and use QuerySet[0] when it's likely that you're going to need the first element and you want to check that it exists. However, when count() is faster it's only marginally faster so it's advisable to always use exists() when choosing between the two."
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
query.exists()
是最有效的方法。特别是在 postgres 上,
count()
可能非常昂贵,有时比普通的选择查询更昂贵。exists()
运行没有 select_lated、字段选择或排序的查询,并且仅获取单个记录。这比通过表连接和排序来计算整个查询要快得多。qs[0]
仍将包括 select_lated、字段选择和排序;所以会更贵。Django源代码在这里(django/db/models/sql/query.py RawQuery.has_results):
https://github.com/django/django/blob/60e52a047e55bc4cd5a93a8bd4d07baed27e9a22/django/db/models/sql/query.py#L499
前几天让我陷入困境的另一个问题是调用if 语句中的 QuerySet。执行并返回整个查询!
如果变量 query_set 可能是
None
(未设置函数的参数),则使用:not:
query.exists()
is the most efficient way.Especially on postgres
count()
can be very expensive, sometimes more expensive then a normal select query.exists()
runs a query with no select_related, field selections or sorting and only fetches a single record. This is much faster then counting the entire query with table joins and sorting.qs[0]
would still includes select_related, field selections and sorting; so it would be more expensive.The Django source code is here (django/db/models/sql/query.py RawQuery.has_results):
https://github.com/django/django/blob/60e52a047e55bc4cd5a93a8bd4d07baed27e9a22/django/db/models/sql/query.py#L499
Another gotcha that got me the other day is invoking a QuerySet in an if statement. That executes and returns the whole query !
If the variable query_set may be
None
(unset argument to your function) then use:not:
contains() 通常比 count() 更快,但并非总是如此(请参见下面的测试)。 count() 可用于检查是否存在和长度。
仅当您确实需要该对象时才使用
qs[0]
。如果您只是测试存在性,那么速度会慢得多。在 Amazon SimpleDB 上,400,000 行:
qs
:325.00 usec/passqs.exists()
:144.46 usec/passqs.count()
144.33 usec/passqs[0]
: 324.98 usec/pass在 MySQL 上,57 行:
qs
:1.07 usec/passqs.exists()
:1.21 usec/passqs.count()
:1.16 usec/passqs[0]
: 1.27 usec/pass我对每个通道使用了随机查询来降低数据库级缓存的风险。测试代码:
exists() is generally faster than count(), though not always (see test below). count() can be used to check for both existence and length.
Only use
qs[0]
if you actually need the object. It's significantly slower if you're just testing for existence.On Amazon SimpleDB, 400,000 rows:
qs
: 325.00 usec/passqs.exists()
: 144.46 usec/passqs.count()
144.33 usec/passqs[0]
: 324.98 usec/passOn MySQL, 57 rows:
qs
: 1.07 usec/passqs.exists()
: 1.21 usec/passqs.count()
: 1.16 usec/passqs[0]
: 1.27 usec/passI used a random query for each pass to reduce the risk of db-level caching. Test code:
这取决于使用上下文。
根据文档:
因此,我认为如果您只想检查空的 QuerySet,
QuerySet.exists()
是最推荐的方法。另一方面,如果您想稍后使用结果,最好对其进行评估。我还认为你的第三个选择是最昂贵的,因为你需要检索所有记录只是为了检查是否存在。
It depends on use context.
According to documentation:
So, I think that
QuerySet.exists()
is the most recommended way if you just want to check for an empty QuerySet. On the other hand, if you want to use results later, it's better to evaluate it.I also think that your third option is the most expensive, because you need to retrieve all records just to check if any exists.
@Sam Odio 的解决方案 是一个不错的起点,但该方法存在一些缺陷,即:
因此,我决定排除一些肯定不匹配的东西,而不是过滤可能匹配的东西,希望仍然避免数据库缓存,同时也保证行数相同。
我只针对本地 MySQL 数据库进行了测试,数据集为:
Timing code:
outputs:
因此您可以看到
count()
比exists()
慢大约 9 倍这个数据集。[0]
也很快,但需要异常处理。@Sam Odio's solution was a decent starting point but there's a few flaws in the methodology, namely:
So instead of filtering something that might match, I decided to exclude something that definitely won't match, hopefully still avoiding the DB cache, but also ensuring the same number of rows.
I only tested against a local MySQL database, with the dataset:
Timing code:
outputs:
So you can see that
count()
is roughly 9 times slower thanexists()
for this dataset.[0]
is also fast, but it needs exception handling.我认为第一种方法是最有效的方法(您可以轻松地用第二种方法来实现它,所以也许它们几乎是相同的)。最后一个需要实际从数据库中获取整个对象,因此它几乎肯定是最昂贵的。
但是,就像所有这些问题一样,了解特定数据库、模式和数据集的唯一方法就是亲自测试。
I would imagine that the first method is the most efficient way (you could easily implement it in terms of the second method, so perhaps they are almost identical). The last one requires actually getting a whole object from the database, so it is almost certainly the most expensive.
But, like all of these questions, the only way to know for your particular database, schema and dataset is to test it yourself.
我也陷入了这个困境。是的,在大多数情况下,exists() 更快,但这在很大程度上取决于您尝试执行的查询集的类型。例如对于一个简单的查询,如:
my_objects = MyObject.objets.all()
您将使用my_objects.exists()
。但是,如果您要执行如下查询:MyObject.objects.filter(some_attr='anything').exclude(something='what').distinct('key').values()
可能您需要测试哪一个更适合(exists()
、count()
、len(my_objects)
)。请记住,数据库引擎是执行查询的引擎,要获得良好的性能结果,很大程度上取决于数据结构和查询的形成方式。您可以做的一件事是,审核查询并针对数据库引擎自行测试它们,然后比较您的结果,您会惊讶于 django 有时是多么天真,尝试 QueryCountMiddleware 来查看执行的所有查询,你就会明白我在说什么。I was also in this trouble. Yes
exists()
is faster for most cases but it depends a lot on the type of queryset you are trying to do. For example for a simple query like:my_objects = MyObject.objets.all()
you would usemy_objects.exists()
. But if you were to do a query like:MyObject.objects.filter(some_attr='anything').exclude(something='what').distinct('key').values()
probably you need to test which one fits better (exists()
,count()
,len(my_objects)
). Remember the DB engine is the one who will perform the query, and to get a good result in performance, it depends a lot on the data structure and how the query is formed. One thing you can do is, audit the queries and test them on your own against the DB engine and compare your results you will be surprised by how naive sometimes django is, tryQueryCountMiddleware
to see all the queries executed, and you will see what i am talking about.