golang-gopkg-eapache-queue.v1-dev

Fast golang queue using ring-buffer
  https://github.com/eapache/queue
  0
  no reviews



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.