buckyroberts / Spider

Python website crawler.
https://thenewboston.com/
969 stars 666 forks source link

What does queue do? #136

Open ho3einshadi opened 3 years ago

ho3einshadi commented 3 years ago

plz help What does queue do?

mwelwankuta commented 1 year ago

A Queue basically is basically used to coordinate tasks between threads. The reason it is being used in the repository is so that the code can multiple instances of itself at the same time. you could look at Asynchronized queue class for more info