📜  aws lambda 中的并发 - 任何代码示例

📅  最后修改于: 2022-03-11 14:57:17.455000             🧑  作者: Mango

代码示例1
Concurrency is the number of requests that your function is serving at any given time.
When your function is invoked, Lambda allocates an instance of it to process the event. 
When the function code finishes running, it can handle another request.
If the function is invoked again while a request is still being processed, another instance is allocated, which increases the function's concurrency.