Codebase list golang-gopkg-eapache-queue.v1 / e4fe975 debian / control
e4fe975

Tree @e4fe975 (Download .tar.gz)

control @e4fe975

1841a00
 
 
 
e4fe975
1841a00
 
 
 
859c7fa
1841a00
 
 
 
 
 
 
 
 
 
 
 
 
Source: golang-gopkg-eapache-queue.v1
Section: devel
Priority: extra
Maintainer: Debian Go Packaging Team <pkg-go-maintainers@lists.alioth.debian.org>
Uploaders: Alexandre Viau <alexandre@alexandreviau.net>, Tim Potter <tpot@hpe.com>
Build-Depends: debhelper (>= 9),
               dh-golang,
               golang-go
Standards-Version: 3.9.6
Vcs-Git: https://anonscm.debian.org/git/pkg-go/packages/golang-gopkg-eapache-queue.v1.git
Vcs-Browser: http://anonscm.debian.org/cgit/pkg-go/packages/golang-gopkg-eapache-queue.v1.git
Homepage: https://github.com/eapache/queue

Package: golang-gopkg-eapache-queue.v1-dev
Architecture: all
Depends: ${shlibs:Depends},
         ${misc:Depends}
Description: 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.