From 34d15fc919adccfda3f9280c4100bd0c052e3881 Mon Sep 17 00:00:00 2001 From: Danilo Piazzalunga Date: Tue, 6 Aug 2024 08:05:47 +0200 Subject: [PATCH] Add guidelines about runtime footprint This adds some considerations about limiting the use of lambdas and streams. Co-authored-by: Georgios Andrianakis --- CONTRIBUTING.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8133b71a9f14e..74183fd8497d3 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -195,6 +195,7 @@ is followed for every pull request. can be used temporarily during the review process but things should be squashed at the end to have meaningful commits. We use merge commits so the GitHub Merge button cannot do that for us. If you don't know how to do that, just ask in your pull request, we will be happy to help! +* Please limit the use of lambdas and streams as much as possible in code that executes at runtime, in order to minimize runtime footprint. ### Continuous Integration