mxnet.kvstore_server

A server node for the key value store.

Classes

KVStoreServer(kvstore)

The key-value store server.

class mxnet.kvstore_server.KVStoreServer(kvstore)[source]

Bases: object

The key-value store server.

Methods

run()

Run the server, whose behavior is like.

run()[source]

Run the server, whose behavior is like.

>>> while receive(x):
...     if is_command x: controller(x)
...     else if is_key_value x: updater(x)