마리아의 줄 위 자물쇠DB 여기 문제가 있습니다. 세션 1이 테이블 X를 업데이트하려고 하면 테이블이 잠깁니다. 내가 필요한 것은 세션 1이 업데이트하려는 행만 잠그는 것이고, 세션 2는 다른 행에 동시에 접근하거나 업데이트할 수 있습니다. 세션 1:update X set a=1994 where b =2 //I want to lock only row where b=2, not the whole table X 세션 2:update X set a=1951 where b =1 //I need it to work PS: 응용 프로그램의 코드에 접근할 수 없습니다. 데이터베이스에서 구성해야 합니다. autocommit=1 사용중입니다innodb_version: 5.5.35-MariaDB-33.0 mariadb의 ..