The more keys I try to add the slower it get's but the time remains constant.

It's a partitioned cache but no backups...

final Context ctx = vertx.getOrCreateContext();
TreeSet<String> keys = new TreeSet<String>();
keys.add(key1);
keys.add(key2);
keys.add(key3);
keys.add(key4);
...

cache.<String>invokeAll(keys, (entry, args) -> {
// Do something cool here...
return myString value
});

So to do something cool...
1 key takes 2ms to do some thing cool...
3 key takes 10ms
27 keys takes 30ms

But the time remains constant at least.





--
View this message in context: 
http://apache-ignite-users.70518.x6.nabble.com/Is-invokeAll-considered-a-batch-operation-tp1220p1221.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Reply via email to