Non-strict two-phase locking
Encyclopedia : N : NO : NON : Non-strict two-phase locking
In computer science, non-strict two-phase locking, also 2PL, is a locking method used in concurrent systems.
The rules for 2PL are similar to those of Strict 2PL:
- If a transaction T wants to read/write an object, it must request a shared/exclusive lock on the object.
- A transaction cannot request additional locks on any object once it releases any lock, and it can release locks at any time (not only at commit time as in Strict 2PL).
From Wikipedia, the Free Encyclopedia. Original article here. Support Wikipedia by contributing or donating.
All text is available under the terms of the GNU Free Documentation License See Wikipedia Copyrights for details.
