Last active
June 20, 2016 05:29
-
-
Save tohyongcheng/94ca536b0a5c96c9751b82150f20c95a to your computer and use it in GitHub Desktop.
Persisting a cache in Python to disk using a decorator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def persist_cache_to_disk(filename): | |
def decorator(original_func): | |
try: | |
cache = pickle.load(open(filename, 'r')) | |
except (IOError, ValueError): | |
cache = {} | |
atexit.register(lambda: pickle.dump(cache, open(filename, "w"))) | |
def new_func(*args): | |
if tuple(args) not in cache: | |
cache[tuple(args)] = original_func(*args) | |
return cache[args] | |
return new_func | |
return decorator | |
# example use of the decorator | |
@persist_cache_to_disk('users.p') | |
def get_all_users(): | |
# your method here | |
pass |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This works from python command prompt. But it does not work from ipython notebook. A modified version can be found here.. https://gist.github.com/shantanuo/c6a376309d6bac6bd55bf77e3961b5fb