Is there any way of over-riding the lru_cache
in python?
Specifically if I have a function such as:
import functools
@functools.lru_cache(maxsize=None)
def function_of_interest(variables):
...
return(processed_values)
Is is possible to reset the cache, and hence run-run the function?