Reputation: 31
So when I create an AWS SAM , I mostly have two options for a runtime, for ex.:
Second one is apparently a docker Image. I would like to know, is there any performance difference if I choose one over the other
Upvotes: 1
Views: 305
Reputation: 23682
Go with nodejs14.x
unless you need to use a container - "performance" is subjective but if you don't need to use containers, don't use them as they will come with extra overhead.
Upvotes: 2