Parallel Image Handling #481
-
When a page has a lot of images (say 100 or so), and they're all being requested for the first time, are all 100 images processed in parallel, in groups, one at a time, or some other way? The speed a single image is processed for the first time is great, but I'm concerned about page load time when there are a ton of images being requested all at once. Any help is appreciated! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The Lambda concurrency set for your account and the Lambda configuration allows multiple executions to occur simultaneously. |
Beta Was this translation helpful? Give feedback.
The Lambda concurrency set for your account and the Lambda configuration allows multiple executions to occur simultaneously.
If multiple requests are made simultaneously they should be processed in parallel up to that value.