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
Hello! We updated our project to use the 5.8.0 with fixed #1211
But we still have too much monitor usage due to Memory finalizers. (and therefore high latency of api calls)
We solved it the with usage of the sun.misc.Cleaner instead of finalizers:
Hello! We updated our project to use the 5.8.0 with fixed #1211
But we still have too much monitor usage due to
Memory
finalizers. (and therefore high latency of api calls)We solved it the with usage of the
sun.misc.Cleaner
instead of finalizers:Code: https://github.com/wavesplatform/Waves/pull/3503/files
Obviously this solution is not very clean, since it's an internal Sun class, but it standard counterpart
java.lang.ref.Cleaner
is available only since Java 9.The text was updated successfully, but these errors were encountered: