You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Threading is used on network_sniffer to run sniffers simultaneously for multiple interfaces. However, due to CPython's GIL, only one thread at a time can access the interpreter.
This can be fixed by either:
Use multiprocessing or Concurrent.futures
Celery
smth else
The text was updated successfully, but these errors were encountered:
Threading is used on network_sniffer to run sniffers simultaneously for multiple interfaces. However, due to CPython's GIL, only one thread at a time can access the interpreter.
This can be fixed by either:
The text was updated successfully, but these errors were encountered: