Daniel Lemire
Daniel Lemire
@richardstartin I have marked this as a possible enhancement.
Pull request invited.
The C version of Roaring has a function called `find_index`: https://github.com/RoaringBitmap/CRoaring/pull/470 The problem with the following is that it entails two potentially expensive queries... ```Java rank = bitmap.rank(n); if (bitmap.contains(n))...
The [simdutf library](https://github.com/simdutf/simdutf) (used in Node.js for base64 decoding) implements forgiving base64. As far as we know, it is fully compliant. One issue that I have encountered is that there...
Some additional information... 1. The simdutf library used in this project is part of bun and node.js. 2. The simdjson runs 'everywhere': we even test on big-endian mainframes. IBM engineers...
@tmikov We have decent fallback performance in simdjson thanks to @jkeiser’s great engineering. Of course, our purpose is to milk the performance of higher performance 64-bit commodity cores.
Can you elaborate on what you want to sort ? The data type is important.
@simonlindholm These are interesting results.
This does not answer your question per se, but you can get [64-bit compressed bitmaps with the ``org.roaringbitmap.longlong.Roaring64NavigableMap`` class](https://github.com/RoaringBitmap/RoaringBitmap).
@manikantag SparseBitSet is serializable. Why don't you serialize and deserialize it instead?