Demystifying AWS Lambda Execution Environment
Have you ever wondered what happens when you invoke you Lambda Function for the first time? How and where the application code is executed?
https://medium.com/@dalibor.plavcic/demystifying-aws-lambda-execution-environment-7be998a83c2a

/tmp
Choosing between AWS Lambda data storage options in web apps | Amazon Web Services
In this post, I compare the capabilities and use-cases of S3, EFS, Lambda layers, and temporary storage for Lambda functions. There are benefits to each approach, as each type has different behaviors and characteristics.
https://aws.amazon.com/ko/blogs/compute/choosing-between-aws-lambda-data-storage-options-in-web-apps/

AWS Lambda /tmp folder is not shared between executions
I'm trying to temporary cache some data for AWS lambda function executions to omit HTTP request that this lambda does every time right now and optimise its' speed.
In "viewer request" I h...
https://stackoverflow.com/questions/67313361/aws-lambda-tmp-folder-is-not-shared-between-executions

Seonglae Cho