python3-persist-queue

thread-safe disk based persistent queue
  https://github.com/peter-wangxu/persist-queue
  0
  no reviews



Persist-queue implements a file-based queue and a serial of sqlite3-based queues. The goals is to achieve following requirements:

* Disk-based: each queued item should be stored in disk in case of any crash. * Thread-safe: can be used by multi-threaded producers and multi-threaded consumers. * Recoverable: Items can be read after process restart. * Green-compatible: can be used in greenlet or eventlet environment.