The Store class

class mktl.Store(name)

The Store implements a key/value store, effectively a Python dictionary with some additional context. A store has a unique name within the local mKTL context; which daemons will be contacted to handle further requests is determined on a per-Item basis, re-use of connections is managed in the mktl.protocol submodule, not here.

Variables:
keys()

Return a sequence of all keys in this store.

values()

Return a sequence of all mktl.Item instances in this store.