An open API service indexing awesome lists of open source software.

https://github.com/twiny/tinyq

an implementation of a persistent FIFO queue. with ability to pause/start dequeue.
https://github.com/twiny/tinyq

command fifo-queue go persistent-queue

Last synced: 10 months ago
JSON representation

an implementation of a persistent FIFO queue. with ability to pause/start dequeue.

Awesome Lists containing this project

README

          

# Queue
an implementation of a persistent FIFO queue. with ability to pause/start dequeue.

**NOTE**: This package is provided "as is" with no guarantee. Use it at your own risk and always test it yourself before using it in a production environment. If you find any issues, please [create a new issue](https://github.com/twiny/tinyq/issues/new).

## Install:
`go get -u github.com/twiny/tinyq/...`

## Known Issues:
- [ ] all goroutines are asleep - deadlock caused by not closing `queue.Dequeue` channel.