I am trying to implement hazelcast. I was wondering if I use java.util.concurrent.BlockingQueue, it sets a max size automatically to it.
Let's say I start a cluster with one node in it, and implement BlockingQueue in it,
next I add one more node to the cluster, so will the queue's maximum size increase as now the cluster has a shared memory of two nodes?
I hope I made my point clear here.