kerimovscreationsOriginal post
Rank 1: Thread
Is there any helpful method to cache data (key-value pair) and share within the function instances? For example, I'm using the 3rd party access token which expires in an hour. I would like to reuse them in function code. I know, I can use Database for this use case, but this will be over-engineering for a simple data caching
Summary
Developers are looking for a way to cache key-value pair data and share it within function instances. They want to reuse 3rd party access tokens that expire in an hour without over-engineering the solution using a database.