Closed MitchellHarrison closed 2 years ago
This sleep should be moved outside of the while True: loop, since it only needs to wait once for the writer object to be created. As it stands, there is a performance hit for no reason.
while True:
writer
This sleep should be moved outside of the
while True:
loop, since it only needs to wait once for thewriter
object to be created. As it stands, there is a performance hit for no reason.