|
|
|
|
|
by zb
2050 days ago
|
|
> Python's "threads" are actually fibers. They’re actually not. They are native threads with high lock contention. Async is arguably fibers, as are greenthreads in libraries like gevent or eventlet. > But if you want to use real threads, multiprocessing's "processes" are actually system threads. They’re system threads running in separate memory spaces. Also known as… processes. |
|