数据库
首页 > 数据库> > PostgreSQL数据库锁机制——常规锁

PostgreSQL数据库锁机制——常规锁

作者:互联网

常规锁也是事务锁,用于协调各种不同事务对相同对象的并发访问。在数据库启动阶段,PG通过InitLocks函数来初始化保存锁对象的共享内存空间,在共享内存中,有两个锁表被用来保存锁对象,分布式主锁表LockMethodLockHash和进程锁表LockMethodProcLockHash。锁表是一个共享内存的哈希表,当一个进程尝试获取一种类型的锁和已经存在的锁冲突时,使用storage/lmgr/proc.c中的函数将该进程置入sleep。

src/backend/storage/lmgr/lock.c
 *	  For the most part, this code should be invoked via lmgr.c
 *	  or another lock-management module, not directly.
 *	Interface:
 *	InitLocks(), GetLocksMethodTable(), GetLockTagsMethodTable(),
 *	LockAcquire(), LockRelease(), LockReleaseAll(),
 *	LockCheckConflicts(), GrantLock()

标签:lock,lmgr,PostgreSQL,锁表,数据库,storage,常规,InitLocks,共享内存
来源: https://blog.csdn.net/asmartkiller/article/details/120896723