python
from hermescache import HermesCache
cache_nodes = ['node1.example.com', 'node2.example.com', 'node3.example.com']
cache = HermesCache(nodes=cache_nodes)
cache.set('key1', 'value1')
cache.set('key2', 'value2')
data1 = cache.get('key1')
data2 = cache.get('key2')
print(data1) # 'value1'
print(data2) # 'value2'