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
Profiling sessions show that using java.util.stream.Stream in some hot paths is not really required and creates a lot of garbage, because those are likely to be called once or multiple times per request.
We should reconsider those and rewrite them with imperative style where possible.
The text was updated successfully, but these errors were encountered:
Profiling sessions show that using
java.util.stream.Stream
in some hot paths is not really required and creates a lot of garbage, because those are likely to be called once or multiple times per request.We should reconsider those and rewrite them with imperative style where possible.
The text was updated successfully, but these errors were encountered: