Hmm, ok. Is KV the best tool to store and read some cache data? Like I have a complex worker functio

Hmm, ok. Is KV the best tool to store and read some cache data? Like I have a complex worker function. During its work, I have to hit several 3rd party API. And I don't want to call them on every worker execution. I want to temporary cache data. On regular server I would use redis or a simple in-memory cache. What about worker? What should I use here? KV?
Was this page helpful?