We are using hazelcast in our project, i would like to know that whatever calculation we do runs on the hazelcast node or the client itself
For eg.
Imap map = client.get("data");
map.values().stream....
In this example does it get whole map from hzc (hazelcast) or its just a reference and when i actually use terminal function in the stream it goes to hzc node and performs operation and get the data?