brettwooldridge / SparseBitSet

An efficient sparse bit set implementation for Java

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

is 64 bit possible?

vitusya opened this issue · comments

Current limit is to use indexes as 32bits ints, is it possible to implement indexes as 64bit long?

@vitusya Unknown. Probably. Pull requests welcome.

@lemire Thanks im aware of Roaring64NavigableMap, I am currently using SparseBitSet because for
current task its performs better. There are also http://judy.sourceforge.net/doc/Judy1_3x.htm Judy bit array written in C, which is solves my problems, but its does not have any serialization and its hard to implement one. Seems i will have to take a look at Roaring64NavigableMap again