Stratégies de verrouillage au niveau des lignes
Découvrez des stratégies avancées pour gérer les verrous au niveau des lignes et optimiser les écritures concurrentes.
Stratégies de verrouillage au niveau des lignes est une leçon PostgreSQL Performance & Query Optimization gratuite sur CoddyKit. Ceci est la leçon 3 sur 4. Tu peux lire la leçon complète ci-dessous gratuitement — puis la pratiquer en direct dans le navigateur avec un éditeur de code intégré et un tuteur IA 24/7. Elle fait partie du parcours d'apprentissage PostgreSQL Performance & Query Optimization, et ta progression se synchronise sur le web et l'application CoddyKit. Le cours PostgreSQL Performance & Query Optimization comprend 4 leçons au total.
Certaines parties de cette leçon n'ont pas encore été traduites et s'affichent en anglais.
Why Row-Level Locking?
When multiple users or processes try to change the same data at the same time, databases need a way to prevent conflicts and ensure data integrity. This is where row-level locking comes in.
A row-level lock allows a transaction to claim exclusive or shared access to specific rows, preventing other transactions from making conflicting changes until the lock is released. It's crucial for high-concurrency applications.
Implicit Row Locks
PostgreSQL automatically applies row-level locks during Data Manipulation Language (DML) operations like INSERT, UPDATE, and DELETE.
INSERT: Places an exclusive lock on the newly inserted row.UPDATE: Places an exclusive lock on the row being modified.DELETE: Places an exclusive lock on the row being deleted.
These implicit locks ensure that only one transaction can modify a specific row at a time.
Explicit Locks: FOR UPDATE
Sometimes you need to lock rows before modifying them, especially when your application logic involves reading data, making decisions, and then updating. This is where SELECT ... FOR UPDATE is invaluable.
It acquires an exclusive lock on the selected rows, preventing other transactions from updating or deleting them until your transaction commits or rolls back.
FOR UPDATE in Action
Try this example. If you run SELECT ... FOR UPDATE in one database session, then try to UPDATE the same row from another session, the second session will wait.
Session 1:
BEGIN;
SELECT * FROM products WHERE product_id = 1 FOR UPDATE;
-- Do some work...
-- UPDATE products SET stock = stock - 1 WHERE product_id = 1;
-- ROLLBACK; OR COMMIT;FOR UPDATE: What Happens
The previous code snippet shows how FOR UPDATE works. If you ran the SELECT in Session 1, then immediately tried to run this UPDATE in a different Session 2, Session 2 would wait until Session 1 either COMMITs or ROLLBACKs.
Session 2 (will wait):
UPDATE products SET price = 10.99 WHERE product_id = 1;Explicit Locks: FOR SHARE
What if you want to prevent updates, but allow other transactions to read the data or even acquire their own shared lock?
SELECT ... FOR SHARE acquires a shared lock. This means:
- Other transactions can read the rows.
- Other transactions can acquire their own
FOR SHARElocks. - Other transactions cannot acquire
FOR UPDATElocks or modify the rows.
FOR SHARE in Action
If Session 1 holds a FOR SHARE lock, Session 2 can also acquire a FOR SHARE lock, but a FOR UPDATE or DML operation on the same row will wait.
Session 1:
BEGIN;
SELECT * FROM orders WHERE order_id = 101 FOR SHARE;
-- Do some calculations...
-- COMMIT; OR ROLLBACK;More Granular Locks: FOR NO KEY UPDATE
SELECT ... FOR NO KEY UPDATE is similar to FOR UPDATE but is weaker. It acquires an exclusive lock that doesn't block FOR KEY SHARE locks.
It's useful when you're updating non-key columns and don't need to prevent concurrent foreign key operations, which are typically very short-lived.
Shared Read Locks: FOR KEY SHARE
SELECT ... FOR KEY SHARE is the weakest explicit row-level lock. It allows other transactions to acquire FOR SHARE, FOR NO KEY UPDATE, and even other FOR KEY SHARE locks.
It primarily prevents other transactions from deleting the locked rows or acquiring an exclusive lock that would modify key columns. It's often used by foreign key constraints.
Locking Order Strategy
A critical strategy to prevent deadlocks (where two transactions wait for each other indefinitely) is to always acquire locks on multiple rows in a consistent order.
For example, if you need to lock rows with product_id = 5 and product_id = 10, always lock 5 first, then 10 across all transactions. This prevents a scenario where one transaction locks 5 then tries for 10, while another locks 10 then tries for 5.
Quick Check: Row Locks
Consider two concurrent transactions. Transaction A runs SELECT * FROM users WHERE user_id = 1 FOR UPDATE;. What happens if Transaction B immediately tries to run UPDATE users SET email = 'new@example.com' WHERE user_id = 1;?
Recap: Row-Level Locks
We've explored how PostgreSQL manages concurrency with row-level locks:
- Implicit locks protect DML operations.
FOR UPDATEprovides exclusive row locks for modifications.FOR SHAREprovides shared locks, allowing reads but blocking updates.FOR NO KEY UPDATEandFOR KEY SHAREoffer more granular control.- Consistently ordering lock acquisition is a key strategy to prevent deadlocks.
Mastering these strategies ensures your application handles concurrent writes efficiently and reliably!
Questions Fréquemment Posées
La leçon « Stratégies de verrouillage au niveau des lignes » est-elle gratuite ?
Oui — le texte complet de « Stratégies de verrouillage au niveau des lignes » est gratuit à lire ici sur le web. Pour la pratiquer de manière interactive (un éditeur de code intégré et un tuteur IA 24/7) et déverrouiller le reste du cours PostgreSQL Performance & Query Optimization, passe à CoddyKit PRO. Le cours PostgreSQL Performance & Query Optimization comprend 4 leçons au total.
Qu'est-ce que j'apprendrai dans « Stratégies de verrouillage au niveau des lignes » ?
Découvrez des stratégies avancées pour gérer les verrous au niveau des lignes et optimiser les écritures concurrentes. Tu pratiques PostgreSQL Performance & Query Optimization avec du code pratique que tu exécutes directement dans le navigateur, et un tuteur IA 24/7 répond à tes questions au fur et à mesure que tu avances dans la leçon.
Dois-je avoir de l'expérience pour commencer PostgreSQL Performance & Query Optimization ?
Aucune expérience préalable n'est requise. PostgreSQL Performance & Query Optimization sur CoddyKit est structuré pour les débutants jusqu'aux apprenants avancés, donc tu peux commencer ici ou depuis le début et avancer à ton rythme. Ceci est la leçon 3 sur 4.
Combien de temps prend la leçon « Stratégies de verrouillage au niveau des lignes » ?
La plupart des leçons CoddyKit prennent environ 5–10 minutes. Chacune est courte et interactive, tu progresses régulièrement et tu repiques exactement où tu t'es arrêté sur le web et l'app.
Peux-tu écrire et exécuter du code dans cette leçon PostgreSQL Performance & Query Optimization ?
Oui. Chaque leçon PostgreSQL Performance & Query Optimization inclut un éditeur de code intégré, tu écris et exécutes du vrai code directement dans ton navigateur et tu reçois des retours IA instantanés — aucune configuration locale requise.
Toutes les leçons de ce cours
- Comprendre les verrous et les interblocages
- Identifier et résoudre la contention sur les verrous
- Stratégies de verrouillage au niveau des lignes
- Verrous consultatifs pour coordonner les applications