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
Looking at the implementation: the backing array would need to use atomic operations like getAndBitWiseOr or else do some locking, but it does neither. It looks like the Java 9 VarHandle API would make this all very possible and efficient using ByteBuffer's, but I've got no idea how to do that without dropping Java 8 support.
That is, is calling
.add
and.mightContain
concurrently from many different threads going to work?The text was updated successfully, but these errors were encountered: