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
Hi. When write/read byte arrays, lib uses in-memory cache. But if you get those array, and modify it - cache also modifies, because you have the same reference.
I encountered that when I tried to clear some fetched data with new Random().nextBytes(data) after usage.
The text was updated successfully, but these errors were encountered:
Hi. When write/read byte arrays, lib uses in-memory cache. But if you get those array, and modify it - cache also modifies, because you have the same reference.
I encountered that when I tried to clear some fetched data with
new Random().nextBytes(data)
after usage.The text was updated successfully, but these errors were encountered: