>From my reading of the javadoc of org.apache.ignite.IgniteCache, only methods that are inherited from javax.cache.Cache are transactional. So, get(..) and put(..) are transactional, but query(..) is not..
>From the javadoc...: Transactions Cache API supports transactions. You can group and set of cache methods within a transaction to provide ACID-compliant behavior. See IgniteTransactions for more information. Methods which can be used inside transaction (put, get...) throw TransactionException. See TransactionException for more information. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/
