Hacker News new | ask | show | jobs
by pillusmany 832 days ago
Shared memory:

https://docs.ray.io/en/latest/ray-core/objects.html

1 comments

According to the docs, those shared memory objects have significant limitations: they are immutable and only support numpy arrays (or must be deserialized).

Sharing arrays of numbers is supported in multiprocessing as well: https://docs.python.org/3/library/multiprocessing.html#shari...