Cayoglu

Results 12 comments of Cayoglu

@dlaidig I love the idea of using additional metadata to solve this. But I think we need to further extend this. Currently, this would infer information from the order of...

It seems like the current `rq-dashboard` on dockerhub is based on branch **features/add_scheduled_registry_support**, which is still at `0.6.0`

Feature branch **features/add_scheduled_registry_support** supports this view

@ljurk I dunno .. but the repository is unfortunately inactive so I wouldn't count on it

I'm getting the same error, if I use pytest-xdist and the `--looponfail` option

The benchmarks using `criterion` are better, but still slow: ``` search symbol/using bitvec -------------------------- base 1.00 873.1±22.66µs 38.3 MB/sec new 1.00 873.1±22.66µs 38.3 MB/sec ``` Criterion code: ```rust use criterion::{criterion_group,...

Using `Rank9` seems to speed up things considerably: ``` search symbol/using bitvec -------------------------- rank9 1.00 204.2±7.31µs 163.7 MB/sec jacob 1.00 873.1±22.66µs 38.3 MB/sec ```

The new `RsDict` from the PR is a bit faster than `rank9`: ``` search symbol/using bitvec -------------------------- rsdict 1.00 201.5±8.32µs 165.8 MB/sec rank9 1.01 204.2±7.31µs 163.7 MB/sec jacob 4.33 873.1±22.66µs...

I actually do not have a base for the acceptable speed rate. One option get a base could be to use the `count_ones()` method on a vector of `u32` or...