Skip to content

Commit e3f5999

Browse files
committed
Integrate suggested worker clarification from @clayote.
1 parent 28c3dfa commit e3f5999

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

docs/user-guide/workers.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -260,9 +260,10 @@ computational tasks.
260260
261261
## Understanding limitations
262262
263-
Workers have separate memory spaces. Each worker has its own memory, and
264-
you cannot share objects between workers or with the main thread. All
265-
communication happens via function calls with serialised data.
263+
Each worker is a separate Python interpreter, in a separate memory space,
264+
with a separate filesystem. You cannot share objects between workers, nor
265+
with the main thread. All communication between them happens via function
266+
calls with serialised data.
266267
267268
Only serialisable data can pass between threads. Function arguments and
268269
return values must be JSON-serialisable: numbers, strings, lists,

0 commit comments

Comments
 (0)