golang-gopkg-eapache-queue.v1 1.0.2-1 source package in Ubuntu

Changelog

golang-gopkg-eapache-queue.v1 (1.0.2-1) unstable; urgency=medium

  * Initial release. (Closes: #794346)

 -- Alexandre Viau <email address hidden>  Sat, 01 Aug 2015 17:21:48 -0400

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Xenial release universe misc

Builds

Wily: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-gopkg-eapache-queue.v1_1.0.2-1.dsc 2.1 KiB 694a9da9acb70d71915e092ab2141b2ab2991f878f4bed402b036850d8f7e998
golang-gopkg-eapache-queue.v1_1.0.2.orig.tar.gz 3.2 KiB 14282b8a19215157207275d439b139361e2e1dbdc7ae42fed8a21f1b14aa6d56
golang-gopkg-eapache-queue.v1_1.0.2-1.debian.tar.xz 1.9 KiB 3b49c10012c4d103a6fba8540e52725c528227ba0bbe0456dbcb39eddeed0829

No changes file available.

Binary packages built by this source

golang-gopkg-eapache-queue.v1-dev: fast golang queue using ring-buffer

 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.