Permalink
Cannot retrieve contributors at this time
import hazelcast | |
# Start the Hazelcast Client and connect to an already running Hazelcast Cluster on 127.0.0.1 | |
client = hazelcast.HazelcastClient() | |
# Get the Distributed Set from Cluster. | |
my_set = client.get_set("my-distributed-set").blocking() | |
# Add items to the set with duplicates | |
my_set.add("item1") | |
my_set.add("item1") | |
my_set.add("item2") | |
my_set.add("item2") | |
my_set.add("item2") | |
my_set.add("item3") | |
# Get the items. Note that there are no duplicates. | |
for item in my_set.get_all(): | |
print(item) | |
# Shutdown this Hazelcast Client | |
client.shutdown() |