https://prefect.io logo
d

Deceivious

07/17/2023, 1:14 PM
HI all, I have the following method thats defined as a Task. @task(
#caching parameters here, result stored on the cloud , with concurrency tag limit set to 3
) def get_response(url): # send request to a highly rate limited API return response Is there some way so that if its a cache hit, the function is not limited by the concurrency tag and if a cache miss occurs, the request is rate limited via the concurrency tag?