mirror of
https://github.com/fhmq/hmq.git
synced 2026-09-01 23:34:52 +00:00
* modify * update * add acl * add feature * update dockerfile * add deploy * update * update * plugins * plugins * update * update * update * fixed * remove * fixed * add log * update * fixed * update * fix config * add http api * add http api * resp * add config for work chan * update * fixed * update * disable trace * fixed * change acl * fixed * fixed res * dd * dd * ddd * dd * update * fixed * update * add * fixed * update key * add log * update * format * update * update auth * update * update readme * added * update * fixed * fixed * fix * upade * update * update
17 lines
849 B
Markdown
17 lines
849 B
Markdown
Queue
|
|
=====
|
|
|
|
[](https://travis-ci.org/eapache/queue)
|
|
[](https://godoc.org/github.com/eapache/queue)
|
|
[](https://eapache.github.io/conduct.html)
|
|
|
|
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`](https://gopkg.in/eapache/queue.v1)
|
|
for guaranteed API stability.
|