タイトル: DBの悲観ロック
SEOタイトル: 【Laravel】DBの悲観ロック
共有ロック(参照時にかけるロック)
DB::table('users')->where('votes', '>', 100)->sharedLock()->get(); |
占有ロック(更新時にかけるロック)
DB::table('users')->where('votes', '>', 100)->lockForUpdate()->get(); |