smgr
是源代码中“存储管理器”(storage manager)的常用缩写。
源代码
/* * smgr.c maintains a table of SMgrRelation objects, which are essentially * cached file handles. An SMgrRelation is created (if not already present) * by smgropen(), and destroyed by smgrclose(). Note that neither of these * operations imply I/O, they just create or destroy a hashtable entry. * (But smgrclose() may release associated resources, such as OS-level file * descriptors.) * ... */
有用链接
- PostgreSQL中的smgr接口 - David Zhang / HighGo 于2023年2月发表的博文