A cached-property for decorating methods in classes.
Project description
A cached-property for decorating methods in classes.
Why?
Makes caching of time or computational expensive properties quick and easy.
Because I got tired of copy/pasting this code from non-web project to non-web project.
I needed something really simple that worked in Python 2 and 3.
How to use it
Let’s define a class with an expensive property. Every time you stay there the price goes up by $50!
class Monopoly(object):
def __init__(self):
self.boardwalk_price = 500
@property
def boardwalk(self):
# In reality, this might represent a database call or time
# intensive task like calling a third-party API.
self.boardwalk_price += 50
return self.boardwalk_price
Now run it:
>>> monopoly = Monopoly()
>>> monopoly.boardwalk
550
>>> monopoly.boardwalk
600
Let’s convert the boardwalk property into a cached_property.
from cached_property import cached_property
class Monopoly(object):
def __init__(self):
self.boardwalk_price = 500
@cached_property
def boardwalk(self):
# Again, this is a silly example. Don't worry about it, this is
# just an example for clarity.
self.boardwalk_price += 50
return self.boardwalk_price
Now when we run it the price stays at $550.
>>> monopoly = Monopoly()
>>> monopoly.boardwalk
550
>>> monopoly.boardwalk
550
>>> monopoly.boardwalk
550
Why doesn’t the value of monopoly.boardwalk change? Because it’s a cached property!
Invalidating the Cache
Results of cached functions can be invalidated by outside forces. Let’s demonstrate how to force the cache to invalidate:
>>> monopoly = Monopoly()
>>> monopoly.boardwalk
550
>>> monopoly.boardwalk
550
>>> # invalidate the cache
>>> del m.boardwalk
>>> # request the boardwalk property again
>>> m.boardwalk
600
>>> m.boardwalk
600
Working with Threads
What if a whole bunch of people want to stay at Boardwalk all at once? This means using threads, which unfortunately causes problems with the standard cached_property. In this case, switch to using the threaded_cached_property:
import threading
from cached_property import threaded_cached_property
class Monopoly(object):
def __init__(self):
self.boardwalk_price = 500
self.lock = threading.Lock()
@threaded_cached_property
def boardwalk(self):
"""threaded_cached_property is really nice for when no one waits
for other people to finish their turn and rudely start rolling
dice and moving their pieces."""
sleep(1)
# Need to guard this since += isn't atomic.
with self.lock:
self.boardwalk_price += 50
return self.boardwalk_price
Now use it:
>>> from threading import Thread
>>> from monopoly import Monopoly
>>> monopoly = Monopoly()
>>> threads = []
>>> for x in range(10):
>>> thread = Thread(target=lambda: monopoly.boardwalk)
>>> thread.start()
>>> threads.append(thread)
>>> for thread in threads:
>>> thread.join()
>>> self.assertEqual(m.boardwalk, 550)
Credits
Pip, Django, Werkzueg, Bottle, Pyramid, and Zope for having their own implementations. This package uses an implementation that matches the Bottle version.
Reinout Van Rees for pointing out the cached_property decorator to me.
My awesome wife @audreyr who created cookiecutter, which meant rolling this out took me just 15 minutes.
History
0.1.5 (2014-05-20)
Added threading support with new threaded_cached_property decorator
Documented cache invalidation
Updated credits
Sourced the bottle implementation
0.1.4 (2014-05-17)
Fix the dang-blarged py_modules argument.
0.1.3 (2014-05-17)
Removed import of package into setup.py
0.1.2 (2014-05-17)
Documentation fixes. Not opening up a RTFD instance for this because it’s so simple to use.
0.1.1 (2014-05-17)
setup.py fix. Whoops!
0.1.0 (2014-05-17)
First release on PyPI.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file cached-property-0.1.5.tar.gz
.
File metadata
- Download URL: cached-property-0.1.5.tar.gz
- Upload date:
- Size: 7.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2d07bd19af2ba5eb1d3c042e2b81c2cd02dc5b0890253cb14ae10f1d34f7f86b |
|
MD5 | 6e9132c59fcfa338a4d50b42da780983 |
|
BLAKE2b-256 | b48b0ec52648c9b7cc9d2b87542d96d9976043f044cb82c128eb7fb3b8f84028 |
File details
Details for the file cached_property-0.1.5-py2.py3-none-any.whl
.
File metadata
- Download URL: cached_property-0.1.5-py2.py3-none-any.whl
- Upload date:
- Size: 6.3 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9c58099474bf35db940c5c7975b92f3c02ea7a6e8248fde0a5f50791753ae870 |
|
MD5 | b13e9956484765361506ae134639d093 |
|
BLAKE2b-256 | 36b6c86a3b964f434c963b84a6eab2510ef8051cfcba5a16b31e1be8cdc01ece |