Skip to content

proxystore.connectors.dim

Distributed in-memory store connectors.

Warning

The distributed in-memory connector implementations have moved to the ProxyStore Extensions package as of ProxyStore v0.6.0. To update, install the proxystore-ex package

$ pip install proxystore[extensions]  # or
$ pip install proxystore-ex
and change the imports accordingly. E.g.,
from proxystore.connectors.dim.zmq import ZeroMQConnector  # OLD
from proxystore.ex.connectors.dim.zmq import ZeroMQConnector  # NEW