hazelcast-python-client icon indicating copy to clipboard operation
hazelcast-python-client copied to clipboard

Map implementation is incomplete

Open neilstevenson opened this issue 4 years ago • 2 comments

There is no name() in https://github.com/hazelcast/hazelcast-python-client/blob/master/hazelcast/proxy/map.py

There could be other operations missing also

neilstevenson avatar Jun 03 '21 08:06 neilstevenson

Good first issue ?

neilstevenson avatar Jun 03 '21 08:06 neilstevenson

@neilstevenson, yes there could be missing functionality.

For the name(), you can use name attribute like

m = client.get_map("test")
name = m.name

mdumandag avatar Jun 03 '21 08:06 mdumandag