FastPFor icon indicating copy to clipboard operation
FastPFor copied to clipboard

The FastPFOR C++ library: Fast integer compression

Results 18 FastPFor issues
Sort by recently updated
recently updated
newest added

I've been investigating using the FastPFor algorithm for integer columns in Druid, following up on the discussion and experimentation mentioned [in this issue](https://github.com/apache/incubator-druid/issues/4080). Initially, I was solely using your [Java...

help wanted

Hi, one thing that I miss from this library is the ability to integrate into a bigger project where I handle the block encoding manually. To be more specific, it...

enhancement
help wanted

Was looking at adding this and realized that the headers are not scoped to say `include/fpfor/*` for example ``` #include "common.h" #include "codecs.h" #include "vsencoding.h" #include "util.h" #include "simple16.h" #include...

We have a vectorized encoder: https://github.com/lemire/streamvbyte

enhancement

in "FastPFor/headers/codecs.h" virtual std::vector compress(const std::vector & data) Is it possible to compute the size of the compressed output or a close approximation instead of allocating a big chunk and...

enhancement

Hi, FastPFor is a wonderful project and has already been added to our database [infinity](https://github.com/infiniflow/infinity/blob/main/src/storage/common/int_encoder.cppm) as the posting list codec for the builtin full text search engine. However, currently we've...

Hi Lemire, I found your software when searching for a solution regarding large binary data. We are using files with an unpublished proprietory file format. With hexdump I noticed that...