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
Use PlatformDependent.threadLocalRandom() to reduce memory footprint (#13977)
Motivation:
Direct use of `io.netty.util.internal.ThreadLocalRandom` and
`j.u.c.ThreadLocalRandom` could cause a lot of memory waste.
Modifications:
Use `PlatformDependent.threadLocalRandom()`.
Result:
Reduced Memory footprint.
0 commit comments