Closed folkien closed 1 year ago
Indeed this should be implemented. Feel free to submit a PR!
This issue is stale because it has been open for 30 days with no activity.
is there an alternative? need to set limit on max queue size in my application. if queue is full, i want the producer to drop data. its a video analytics application and I need to drop frames to keep up with processing demand.
Why not catch the Full
exception that's raised when there's no more space in the queue?
You can drop a frame every time the exception is raised
Not fully compatible with standard Queue. Missing
maxsize
argument.