We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28c3dfa commit e3f5999Copy full SHA for e3f5999
1 file changed
docs/user-guide/workers.md
@@ -260,9 +260,10 @@ computational tasks.
260
261
## Understanding limitations
262
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.
+Each worker is a separate Python interpreter, in a separate memory space,
+with a separate filesystem. You cannot share objects between workers, nor
+with the main thread. All communication between them happens via function
266
+calls with serialised data.
267
268
Only serialisable data can pass between threads. Function arguments and
269
return values must be JSON-serialisable: numbers, strings, lists,
0 commit comments