go-diskqueue icon indicating copy to clipboard operation
go-diskqueue copied to clipboard

A Go package providing a filesystem-backed FIFO queue

Results 11 go-diskqueue issues
Sort by recently updated
recently updated
newest added

Currently when the queue is empty, even after a long time, the file still takes up disk space. We need similar functionality: ``` func (d *diskQueue) CleanupIfQueueEmpty() error { d.Lock()...