Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I noticed that I get too many database hits whilst rendering some complicated pages with a lot of related entities lookups. I was able to partially optimize it by using select_related() where possible in the views but there is another portion of hits that I get from condition check and perhaps there is something I overlooked in the docs that could help.

I used django-debug-toolbar to learn that this expression will give me two database hits - one to check the entry exists and another one to actually render it. The reason I do this lookup is because I don't want empty "()" all over the place. Is there a template tag or something that I could use to surround the value by something?

{% if project__current_phase__recent_status__comment %}
({{ project__current_phase__recent_status__comment }})
{% endif %}
share|improve this question

1 Answer

up vote 5 down vote accepted

The with template tag. From the docs:

Caches a complex variable under a simpler name. This is useful when accessing an "expensive" method (e.g., one that hits the database) multiple times.

Example:

{% with project_comment=project__current_phase__recent_status__comment %}
   {% if project_comment %}
      ({{ project_comment }})
   {% endif %}
{% endwith %}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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