Hi i'm trying to use @cache() decorator using a worker like celery/dramatiq. Is there a way to use decorator outside of fastapi? ``` @cache() def long_function_query(word): pass # do long running stuff. ```