tile38/vendor/github.com/eapache/queue
tidwall 03662bb1fb Updated Kafka client 2021-07-08 06:34:09 -07:00
..
.gitignore Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
.travis.yml Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
LICENSE Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
README.md Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
queue.go Updated Kafka client 2021-07-08 06:34:09 -07:00

README.md

Queue

Build Status GoDoc Code of Conduct

A fast Golang queue using a ring-buffer, based on the version suggested by Dariusz Górecki. Using this instead of other, simpler, queue implementations (slice+append or linked list) provides substantial memory and time benefits, and fewer GC pauses.

The queue implemented here is as fast as it is in part because it is not thread-safe.

Follows semantic versioning using https://gopkg.in/ - import from gopkg.in/eapache/queue.v1 for guaranteed API stability.