Often I find myself wanting to get the first object from a queryset in Django, or return None if there aren't any. There are lots of ways to do this which all work. But I'm wondering which is the most performant.

qs = MyModel.objects.filter(blah = blah)
if qs.count() > 0:
    return qs[0]
else:
    return None

Does this result in two database calls? That seems wasteful. Is this any faster?

qs = MyModel.objects.filter(blah = blah)
if len(qs) > 0:
    return qs[0]
else:
    return None

Another option would be:

qs = MyModel.objects.filter(blah = blah)
try:
    return qs[0]
except IndexError:
    return None

This generates a single database call, which is good. But requires creating an exception object a lot of the time, which is a very memory-intensive thing to do when all you really need is a trivial if-test.

How can I do this with just a single database call and without churning memory with exception objects?

link|improve this question

Rule of thumb: If you're worried about minimizing DB round-trips, don't use len() on querysets, always use .count(). – Daniel DiPaolo Feb 25 '11 at 23:41
feedback

4 Answers

up vote 7 down vote accepted
r = list(qs[:1])
if r:
  return r[0]
return None
link|improve this answer
If you turn on tracing I'm pretty sure you'll even see this add LIMIT 1 to the query, and I don't know that you can do any better than this. However, internally __nonzero__ in QuerySet is implemented as try: iter(self).next() except StopIteration: return false... so it doesn't escape the exception. – Ben Jackson Feb 26 '11 at 0:00
@Ben: QuerySet.__nonzero__() is never called since the QuerySet is converted to a list before checking for trueness. Other exceptions may still occur however. – Ignacio Vazquez-Abrams Feb 26 '11 at 0:07
Pythonic coding style plans on generating and catching exceptions too often, IMHO. But Ignacio's solution is elegant. – Leopd Feb 26 '11 at 0:41
@Aron: That can generate a StopIteration exception. – Ignacio Vazquez-Abrams Apr 19 at 1:21
feedback

The correct answer is

Entry.objects.all()[:1].get()

Which can be used in: Entry.objects.filter()[:1].get()

You wouldn't want to first turn it into a list because that would force a full database call of all the records. Just do the above and it will only pull the first. You could even use .order_by to ensure you get the first you want.

Be sure to add the .get() or else you will get a QuerySet back and not an object.

link|improve this answer
You would still need to wrap it in a try... except ObjectDoesNotExist, which is like the original third option but with slicing. – Danny W. Adair Mar 9 at 2:55
feedback

Can you use objects.get when you need only one result?

link|improve this answer
That works, but qs.get() raises an exception if there isn't anything there. – Leopd Feb 25 '11 at 23:47
What do you mean by that? get() without parameters or when get returns no-result. So this is example: cheese_blog = Blog.objects.get(name="Cheddar Talk") docs.djangoproject.com/en/dev/topics/db/queries – glg Feb 26 '11 at 1:11
From docs.djangoproject.com/en/dev/topics/db/queries/… - "If there are no results that match the query, .get() will raise a DoesNotExist exception." – Leopd Feb 28 '11 at 21:01
feedback

If you plan to get first element often - you can extend QuerySet in this direction:

class FirstQuerySet(models.query.QuerySet):
    def first(self):
        return self[0]


class ManagerWithFirstQuery(models.Manager):
    def get_query_set(self):
        return FirstQuerySet(self.model)

Define model like this:

class MyModel(models.Model):
    objects = ManagerWithFirstQuery

And use it like this:

 first_object = MyModel.objects.filter(x=100).first()
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.