Christian R. Petrin
Christian R. Petrin
The current candidate closer to deque's performance is the [cookiejar deque](https://github.com/karalabe/cookiejar/blob/master/collections/deque/deque.go). Cookiejar is ahead of deque in three test ranges (>= 10k). Below is from [PERFORMANCE.md](https://github.com/ef-ds/deque-bench-tests/blob/master/PERFORMANCE.md). ``` benchstat testdata/BenchmarkMicroserviceDequeQueuev1.0.3.txt testdata/BenchmarkMicroserviceCookiejarQueue.txt...
The [eapache queue](https://github.com/eapache/queue) is a very nice one. It performs really well, especially for small data sets. Still, the eapache queue is faster than deque in only 2 out of...