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.
- Host: GitHub
- URL: https://github.com/twiny/tinyq
- Owner: twiny
- License: mit
- Created: 2021-08-23T16:17:12.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-12-14T21:34:24.000Z (about 4 years ago)
- Last Synced: 2025-02-09T17:42:36.234Z (12 months ago)
- Topics: command, fifo-queue, go, persistent-queue
- Language: Go
- Homepage:
- Size: 26.4 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.