You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pages/serverless-functions/concepts.mdx
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,6 +39,10 @@ Startup process steps are:
39
39
40
40
[How to reduce cold starts](/faq/serverless-functions/#how-to-reduce-cold-start-of-serverless-functions)
41
41
42
+
## Concurrency
43
+
44
+
Concurrency defines the capacity of a resource to process several requests at the same time. A single instance of a function has a concurrency of `1` as it handles requests sequentially, one by one, but a Serverless Function can have several instances running in parallel, depending on its [scaling](#scaling) configuration.
45
+
42
46
## Container Registry
43
47
44
48
Container Registry is the place where your images of your Serverless Functions are stored before being deployed.
0 commit comments