-
Bug
-
Resolution: Done
-
Critical
-
4.2.1.FINAL
-
Low
If eager locking is enabled, a remote lock is acquired repeatedly.
e.g.
tx.begin()
cache.put(k,v); //rpc acquiring lock on "k"
...
cache.remove(k); // another rpc for acquiring lock on "k"
tx.commit();
the second rpc for acquiring lock is un-necessary.