Package org.apache.zookeeper.server.util
Class BitHashSet
- java.lang.Object
- 
- org.apache.zookeeper.server.util.BitHashSet
 
- 
 public class BitHashSet extends Object implements Iterable<Integer> Using BitSet to store all the elements, and use HashSet to cache limited number of elements to find a balance between memory and time complexity. Without HashSet, we need to use O(N) time to get the elements, N is the bit numbers in elementBits. But we need to keep the size small to make sure it doesn't cost too much in memory, there is a trade off between memory and time complexity. Previously, was deciding to dynamically switch between SparseBitSet and HashSet based on the memory consumption, but it will take time to copy data over and may have some herd effect of keep copying data from one data structure to anther. The current solution can do a very good job given most of the paths have limited number of elements.
- 
- 
Constructor SummaryConstructors Constructor Description BitHashSet()BitHashSet(int cacheSize)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanadd(Integer elementBit)intcachedSize()booleancontains(Integer elementBit)booleanisEmpty()Iterator<Integer>iterator()This function is not thread-safe, need to synchronized when iterate through this set.booleanremove(Integer elementBit)intremove(Set<Integer> bitSet, BitSet bits)Remove the watches, and return the number of watches being removed.intsize()- 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface java.lang.IterableforEach, spliterator
 
- 
 
- 
- 
- 
Method Detail- 
addpublic boolean add(Integer elementBit) 
 - 
removepublic int remove(Set<Integer> bitSet, BitSet bits) Remove the watches, and return the number of watches being removed.
 - 
removepublic boolean remove(Integer elementBit) 
 - 
containspublic boolean contains(Integer elementBit) 
 - 
sizepublic int size() 
 - 
iteratorpublic Iterator<Integer> iterator() This function is not thread-safe, need to synchronized when iterate through this set.
 - 
cachedSizepublic int cachedSize() 
 - 
isEmptypublic boolean isEmpty() 
 
- 
 
-