A thread-safe queue object which is interchangeable with the stdlib Queue. Any overflow goes into a compressed file to keep excessive amounts of queued items out of memory
Project description
Overview
filequeue is a Python library that provides a thread-safe queue which is a subclass of queue.Queue from the stdlib, filequeue.FileQueue.
filequeue.FileQueue is a drop in, swap out replacement for queue.Queue and will overflow onto disk if the number of items exceeds the specified buffersize, maxsize, instead of blocking or raising Full like the regular queue.Queue.
There is also filequeue.PriorityFileQueue and filequeue.LifoFileQueue implementations, as counterparts to queue.PriorityQueue and queue.LifoQueue.
Note filequeue.FileQueue and filequeue.LifoFileQueue will only have identical behaviour as queue.Queue and queue.LifoQueue respectively if they are initialised with maxsize=0 (the default). See __init__ docstring for details (help(FileQueue))
Note filequeue.PriorityFileQueue won’t currently work exactly the same as a straight out replacement for queue.PriorityQueue. The interface is very slightly different (extra optional kw argument on put and __init__), although it will work it won’t behave exactly the same if using as a swap out replacement. It might still be useful to people though and hopefully I’ll be able to address this in a future version.
Requirements:
Python 2.5+ or Python 3.x
Why?
The motivation came from wanting to queue a lot of work, without consuming lots of memory.
The interface of filequeue.FileQueue matches that of queue.Queue (or Queue.Queue in python 2). With the idea being that most people will use queue.Queue, and can then swap in a filequeue.FileQueue only if the memory usage becomes an issue. (Same applies for filequeue.LifoFileQueue)
Licence
Made available as-is under the BSD Licence.
Issues
Any issues please post on the github page.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file filequeue-0.4.1.tar.gz
.
File metadata
- Download URL: filequeue-0.4.1.tar.gz
- Upload date:
- Size: 4.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/2.7.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4592c231235fb47c8bd1980a1477b435e410a3b7d0a723a3a845a71e56e1c40e |
|
MD5 | 8312fba5c3142bdf5076bc35a95960c4 |
|
BLAKE2b-256 | 8a65f38928f91a8209e81be72a9f4c85ee07162625bdc03c9f95bd2a8fd83ed0 |