Purging cache in workers
I have a use case where caching is needed based on time of day, for example during 11:00 to 17:00, requests shouldn’t be cached. To implement the same, workers seemed like a feasible solution. Problem is in case I need to purge cache because of some reason, there is no support to purge by prefix, but only exact match of cache key.
My cache key consists of url with multiple query params which are very dynamic.
Any suggestions which fit in my use case?
My cache key consists of url with multiple query params which are very dynamic.
Any suggestions which fit in my use case?