Let's assume we have a nonexclusive method non_method that calls another (exclusive) method. Now if we have two transactions t1 and t2 both calling non_method, transactron will create a conflict between t1 and t2, which is unnecessary (and in my case even created a bug)
Let's assume we have a nonexclusive method
non_method
that calls another (exclusive) method. Now if we have two transactionst1
andt2
both callingnon_method
, transactron will create a conflict betweent1
andt2
, which is unnecessary (and in my case even created a bug)