Home

Awesome

this is a basic implementation of hazelcast protocol in python

you need to clone hazelcast/clientprotocol and compile for the server part.

now run server,

now for the python client,

here is a quick example

from hazelcast.client import hazelcast
hc = hazelcast()
hc.mput('mymap', 'foo', 'bar')
print hc.mget('mymap', 'foo')