While going through the below code, i found this issue.
<code>Ignite ignite = Ignition.ignite();
// Non-colocated queue which will be distributed
// across all data nodes.
IgniteQueue<String> queue = ignite.queue("queueName", 20, new
CollectionConfiguration());
// Add queue elements.
for (int i = 0; i < 20; i++)
queue.add("Value " + Integer.toString(i));
// Poll queue elements.
for (int i = 0; i < 20; i++)
System.out.println("Polled value: " + queue.poll());</code>
How to make sure above code is bounded to specific data Region with
persistence on for few data structure and off for few??
--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/