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
Currently our fat jar support can produce a lot of char[] garbage. One obvious area of improvement is when we call String.subString(..). In Java 6 these calls were relatively cheap, but in Java 8 they produce a complete copy of the underlying char[].
The text was updated successfully, but these errors were encountered:
Currently our fat jar support can produce a lot of
char[]
garbage. One obvious area of improvement is when we callString.subString(..)
. In Java 6 these calls were relatively cheap, but in Java 8 they produce a complete copy of the underlyingchar[]
.The text was updated successfully, but these errors were encountered: