Hi, In the case of a single node, I don't think that you can speed up this process. But you can scale your performance by adding new nodes.
It can be done using compute tasks and local SQL queries or local cache operation. It means that you will be able to run part of your login on every data node and send to the client only some results. Read more about compute tasks you can here: https://ignite.apache.org/releases/latest/javadoc/org/apache/ignite/compute/ComputeTask.html The example you can see here: https://github.com/apache/ignite/blob/master/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeTaskMapExample.java Local SqlFieldQuery you can do inside compute task with next flag: https://ignite.apache.org/releases/latest/javadoc/org/apache/ignite/cache/query/SqlFieldsQuery.html#setLocal-boolean- Do local cache operation you can via next methods: https://ignite.apache.org/releases/latest/javadoc/org/apache/ignite/IgniteCache.html#localPeek-K-org.apache.ignite.cache.CachePeekMode...- BR, Andrei -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/
