Berkeley DB: DbMpoolFile
Google

ee,hash,hashing,transaction,transactions,locking,logging,access method,access me thods,java,C,C++">

DbMpoolFile


#include <db_cxx.h>

Description

This manual page describes the specific details of the DbMpoolFile class.

The DbMpoolFile and DbMpool classes are the library interface intended to provide general-purpose, page-oriented buffer management of one or more files. While designed to work with the other Db classes, this class is also useful for more general purposes. The memory pools (DbMpool's) are referred to in this document as simply pools.

Pools may be shared between processes. Pools are usually filled by pages from one or more files (DbMpoolFile's). Pages in the pool are replaced in LRU (least-recently-used) order, with each new page replacing the page that has been unused the longest. Pages retrieved from the pool using DbMpoolFile::get are pinned in the pool, by default, until they are returned to the pool's control using the DbMpoolFile::put method.

Class

DbMpoolFile

See Also

DbMpoolFile::close, DbMpoolFile::get, DbMpoolFile::open, DbMpoolFile::put, DbMpoolFile::set and DbMpoolFile::sync.