-
Here I try to build an MPFH for 2^30 keys using recsplit. I'm running on an Amazon EC2 instance of type m5.4xlarge. Such an instance has 16 cores and 64 GiB of memory.
```
$ wc -l test.keys
1073…
-
The input query format should be documented in the docs.
-
This issue will list and explain possible improvements I thought about and those I read in Algolia's blog posts.
## Reduce the postings lists size https://github.com/meilisearch/MeiliSearch/issues/…
-
Some data can lead to worst-case ~4x RAM usage due to this optimization. Several ideas were suggested to combat this on the mailing list:
> I think we can improve thesituation here by tracking, per-F…
-
Dear PyPI, I hereby request an exemption from the file size limit for PyPI (not TestPyPI) for my project *Icegrams* (`https://pypi.org/project/icegrams/`). Icegrams is a Python package that encapsulat…
-
The following test fails using sux4j 4.0.0 or 4.2.0:
```java
@Test
public void testEliasFanoEncoding() {
final long n = (long)Integer.MAX_VALUE + 1L; // ok without + 1L
…
-
This is similar but different from #5.
There are some use case for skipping a given number of elements.
Once again, Elias Fano makes it possible by counting zeroes and ones in the unary encoded se…
-
"It is non trivial whether this code is actually correct for all u64 :
https://github.com/tomarrell/rust-elias-fano/blob/master/src/utils.rs#L33
[`u64::heading_zeros`](https://doc.rust-lang.org/…
-
I was wondering if there is an easy way to compress a non-decreasing sequence of integers using Elias-Fano coding. I know that sd_vector is using it to compress a bitvector.
Thank you.
-
[BitSet](https://docs.oracle.com/javase/7/docs/api/java/util/BitSet.html)s and [SparseBitSet](https://github.com/brettwooldridge/SparseBitSet)s can be used as backing data structure for `IntSet`s, or,…