Memcached – Handling dogpile.cache decorator exceptions
I'm using dogpile.cache in a Python project, with a pylibmc based backend. After creating a region I use something like: @region.cache_on_arguments() def run_some_query(**kwargs): # ... Query code ... return query_results My problem is, that there are certain exceptions that the…