Let's say that I have a value stored in Redis that it's periodically updated. Now, let's say that I want to avoid fetching this value every time I need it in my application: I could cache this value in memory since I know that it's guaranteed that the value won't be updated given one periodic schedule and the next.
Something similar to this implementation.
Given the ephemeral nature of serverless, would this make any sense in an AWS lambda environment? I can imagine that it doesn't for cold start, but does it for warm starts?!