Made the @cached_property example more consistent.

This commit is contained in:
Bryan Helmig 2017-08-10 11:54:19 -04:00 committed by Tim Graham
parent 9ecf280394
commit 68f0bcb012
1 changed files with 7 additions and 7 deletions

View File

@ -471,16 +471,16 @@ https://web.archive.org/web/20110718035220/http://diveintomark.org/archives/2004
{% for friend in person.friends %}
Here, ``friends()`` will be called twice. Since the instance ``person`` in
the view and the template are the same, ``@cached_property`` can avoid
that::
the view and the template are the same, decorating the ``friends()`` method
with ``@cached_property`` can avoid that::
from django.utils.functional import cached_property
@cached_property
def friends(self):
# expensive computation
...
return friends
class Person(models.Model):
@cached_property
def friends(self):
...
Note that as the method is now a property, in Python code it will need to
be invoked appropriately::