pastas.decorators.temporarily_disable_cache#

pastas.decorators.temporarily_disable_cache()#

Context manager to temporarily disable caching.

Examples

To temporarily disable the cache (if it is currently active):

with ps.temporarily_disable_cache():
    # Caching is disabled within this block
    ml.simulate()