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
My question about NestJS deployed as serverless it become a single "monolithic function" (main). Do you know how to turn on many single purposed functions?
Having one or more functions really depends of what you're trying to achieve. Having your whole api as one functions has drawbacks yes, like increased cold start time and and slightly slower response time due to the framework additional routing. It can be acceptable or not, depending of your use case.
If you're looking for the best performance and fastest response times then you will better with separate functions and relying on the provider's routing. For that there's a Nestjs WIP compiler that provides additional annotations to deploy your app as separate functions, but there's no public doc for it yet: github.com/nestjs/serverless-core
Once it's officially release I will most likely update this demo app to use it 😉
My question about NestJS deployed as serverless it become a single "monolithic function" (main). Do you know how to turn on many single purposed functions?
https://hackernoon.com/aws-lambda-should-you-have-few-monolithic-functions-or-many-single-purposed-functions-8c3872d4338f
The text was updated successfully, but these errors were encountered: