diff options
Diffstat (limited to 'examples/dogpile_caching/advanced.py')
-rw-r--r-- | examples/dogpile_caching/advanced.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/dogpile_caching/advanced.py b/examples/dogpile_caching/advanced.py index feccaa3ba..be9898762 100644 --- a/examples/dogpile_caching/advanced.py +++ b/examples/dogpile_caching/advanced.py @@ -18,7 +18,7 @@ def load_name_range(start, end, invalidate=False): The cache option we set up is called "name_range", indicating a range of names for the Person class. - The `Person.addresses` collections are also cached. Its basically + The `Person.addresses` collections are also cached. It's basically another level of tuning here, as that particular cache option can be transparently replaced with joinedload(Person.addresses). The effect is that each Person and their Address collection |