Let’s say if We have chains A, B, C
And we have lock between A <-> B & B <-> C but no lock between A <-> C.
But we want C to not go in lock wait when A is running. The thing is the process inside A and C have no relation. So we don’t want C to wait for A to complete.
Is there any way to achieve this by creating locks in a different way? Because when we are creating above setup, C is going in lock wait.