For AWS Lambda, which is better "Workstation GC" or "Server GC". #1193
-
Hi there. https://levelup.gitconnected.com/improving-memory-usage-and-stability-on-aws-lambda-net-7c0c47c5b52e My project settings
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
@sudoudaisuke Most of the time you need not manage garbage collection by yourself if you are disposing off the resources properly in your application logic. Based on the 1st article, it proposes the following:
So, it appears that Workstation GC might be the better approach for Lambda environment where memory is limited. |
Beta Was this translation helpful? Give feedback.
@sudoudaisuke Most of the time you need not manage garbage collection by yourself if you are disposing off the resources properly in your application logic. Based on the 1st article, it proposes the following: