show/hide this revision's text 2 added 187 characters in body

If the array of ints is guaranteed to have no duplicates, you can use a java.util.BitSet, which instead.

As its base implementation is very economican array of bits, insteadwith each bit indicating if a certain integer is present or not in the BitSet, its memory usage is quite low, therefore needing less space to be serialized.

show/hide this revision's text 1

If the array of ints is guaranteed to have no duplicates, you can use a java.util.BitSet, which is very economic, instead.