Sync Socket¶
This is an extension of the mesh_socket
which syncronizes a common dict
. It works by providing an extra handler to store data. This does not expose the entire dict
API, but it exposes a substantial subset, and we’re working to expose more.
Note
This is a fairly inefficient architecture for write intensive applications. For cases where the majority of access is reading, or for small networks, this is ideal. For larger networks where a significant portion of your operations are writing values, you should wait for the chord socket to come into beta.
Basic Usage¶
There are three limitations compared to a normal dict
.
- Keys and values can only be
bytes
-like objects - Keys and values are automatically translated to
bytes
- By default, this implements a leasing system which prevents you from changing values set by others for a certain time
You can override the last restriction by constructing with leasing=False
, like so:
>>> from py2p import sync
>>> sock = sync.sync_socket('0.0.0.0', 4444, leasing=False)
The only API differences between this and mesh_socket
are for access to this dictionary. They are as follows.
get()
/ __getitem__()
¶
A value can be retrieved by using the get()
method, or alternately with __getitem__()
. These calls are both O(1)
, as they read from a local dict
.
>>> foo = sock.get('test key', None) # Returns None if there is nothing at that key
>>> bar = sock[b'test key'] # Raises KeyError if there is nothing at that key
>>> assert bar == foo == sock[u'test key'] # Because of the translation mentioned below, these are the same key
It is important to note that keys are all translated to bytes
before being used, so it is required that you use a bytes
-like object. It is also safer to manually convert unicode
keys to bytes
, as there are sometimes inconsistencies betwen the Javascript and Python implementation. If you notice one of these, please file a bug report.
set()
/ __setitem__()
¶
A value can be stored by using the set()
method, or alternately with __setitem__()
. These calls are O(n)
, as it has to change values on other nodes. More accurately, the delay between your node knowing of the change and the last node knowing of the change is O(n)
.
>>> sock.set('test key', 'value')
>>> sock[b'test key'] = b'value'
>>> sock[u'测试'] = 'test'
Like above, keys and values are all translated to bytes
before being used, so it is required that you use a bytes
-like object.
This will raise a KeyError
if another node has set this value already. Their lease will expire one hour after they set it. If two leases are started at the same UTC second, the tie is settled by doing a string compare of their IDs.
Any node which sets a value can change this value as well. Changing the value renews the lease on it.
__delitem__()
¶
Any node which owns a key, can clear its value. Doing this will relinquish your lease on that value. Like the above, this call is O(n)
.
>>> del sock['test']
Advanced Usage¶
Refer to the mesh socket tutorial