Gregory Meyer (gregjm)

Results 13 issues of Gregory Meyer (gregjm)

In flat_set::assign, the container only provides the basic exception guarantee if memory cannot be stolen from the input and the ::reserve() allocation throws. In addition, since input_view does not specify...

Parallel insertion workloads have some significant latency spikes when a rehashing into a new `BucketArray` is triggered. This is likely because rehashing will block all insertion threads when it happens,...

Connection pooling allows us a nice performance boost in almost every case. Plus, with Containers.ResourcePool, it's dead easy.

perf

While the readme claims that this library is faster than Celery running on PyPy, there is no proof presented of that claim. When this issue is closed, README.md should have...

docs

As the title says. Cluster connections should be supported in the format: `redis+cluster://localhost:6379;redis+cluster://localhost:6380`

feat

Integration tests should be performed with a Vagrant VM running Docker containers.

test

When this issue is closed, `createClient`, `createBroker`, and `createBackend` should all be able to parse out secure connections and load files.

feat

When used together, RedisBroker and RpcBackend do not form a functioning client. The error likely lies in the Kombu library used by Celery.

fix

While `node-celery` merely uses `LPUSH` to publish, the genuine article uses some more complex methods for communication. This is the output of `redis-cli monitor` when sending a task and waiting...

fix

[lodash](https://github.com/lodash/lodash) is overall a more modern, more consistent, and better maintained library compared to underscore. It offers pretty much the same functionality as underscore. When this issue is closed, lodash...

refactor