Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
hazelcast-python-client/examples/org-website/set_sample.py
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
18 lines (17 sloc)
554 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() |