mirror of
https://github.com/berkeleydb/libdb.git
synced 2024-11-17 01:26:25 +00:00
279 lines
14 KiB
HTML
279 lines
14 KiB
HTML
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|||
|
<head>
|
|||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|||
|
<title>Chapter 9. The DbMpoolFile Handle</title>
|
|||
|
<link rel="stylesheet" href="apiReference.css" type="text/css" />
|
|||
|
<meta name="generator" content="DocBook XSL Stylesheets V1.73.2" />
|
|||
|
<link rel="start" href="index.html" title="Berkeley DB C++ API Reference" />
|
|||
|
<link rel="up" href="index.html" title="Berkeley DB C++ API Reference" />
|
|||
|
<link rel="prev" href="logcompare.html" title="DbEnv::log_compare()" />
|
|||
|
<link rel="next" href="dbget_mpf.html" title="Db::get_mpf()" />
|
|||
|
</head>
|
|||
|
<body>
|
|||
|
<div xmlns="" class="navheader">
|
|||
|
<div class="libver">
|
|||
|
<p>Library Version 11.2.5.2</p>
|
|||
|
</div>
|
|||
|
<table width="100%" summary="Navigation header">
|
|||
|
<tr>
|
|||
|
<th colspan="3" align="center">Chapter 9.
|
|||
|
The DbMpoolFile Handle
|
|||
|
</th>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td width="20%" align="left"><a accesskey="p" href="logcompare.html">Prev</a> </td>
|
|||
|
<th width="60%" align="center"> </th>
|
|||
|
<td width="20%" align="right"> <a accesskey="n" href="dbget_mpf.html">Next</a></td>
|
|||
|
</tr>
|
|||
|
</table>
|
|||
|
<hr />
|
|||
|
</div>
|
|||
|
<div class="chapter" lang="en" xml:lang="en">
|
|||
|
<div class="titlepage">
|
|||
|
<div>
|
|||
|
<div>
|
|||
|
<h2 class="title"><a id="memp"></a>Chapter 9.
|
|||
|
The DbMpoolFile Handle
|
|||
|
</h2>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
<pre class="programlisting">#include <db_cxx.h>
|
|||
|
|
|||
|
class DbMpoolFile {
|
|||
|
public:
|
|||
|
DB_MPOOLFILE *DbMpoolFile::get_DB_MPOOLFILE();
|
|||
|
const DB_MPOOLFILE *DbMpoolFile::get_const_DB_MPOOLFILE() const;
|
|||
|
...
|
|||
|
}; </pre>
|
|||
|
<p>
|
|||
|
The memory pool interfaces for the Berkeley DB database environment are methods of the
|
|||
|
<a class="link" href="env.html" title="Chapter 5. The DbEnv Handle">DbEnv</a> handle. The
|
|||
|
<a class="link" href="env.html" title="Chapter 5. The DbEnv Handle">DbEnv</a> memory pool methods and the
|
|||
|
<code class="classname">DB_MPOOLFILE</code> class provide general-purpose, page-oriented buffer
|
|||
|
management of files. Although designed to work with the other
|
|||
|
<a class="link" href="db.html" title="Chapter 2. The Db Handle">Db</a>classes, they are also useful for more general
|
|||
|
purposes. The memory pools are referred to in this document as simply
|
|||
|
<span class="emphasis"><em>the cache</em></span>.
|
|||
|
</p>
|
|||
|
<p>
|
|||
|
The cache may be shared between processes. The cache is usually filled by pages from one or
|
|||
|
more files. Pages in the cache 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
|
|||
|
cache using <a class="xref" href="mempfget.html" title="DbMpoolFile::get()">DbMpoolFile::get()</a> are
|
|||
|
<span class="emphasis"><em>pinned</em></span> in the cache until they are returned to the control of the
|
|||
|
cache using the <a class="xref" href="mempput.html" title="DbMpoolFile::put()">DbMpoolFile::put()</a> method.
|
|||
|
</p>
|
|||
|
<p>
|
|||
|
The <code class="classname">DbMpoolFile</code> object is the handle for a file in the
|
|||
|
cache. The handle is not free-threaded. Once the
|
|||
|
<a class="xref" href="mempfclose.html" title="DbMpoolFile::close()">DbMpoolFile::close()</a> method is called, the handle
|
|||
|
may not be accessed again, regardless of that method's return.
|
|||
|
</p>
|
|||
|
<div class="sect1" lang="en" xml:lang="en">
|
|||
|
<div class="titlepage">
|
|||
|
<div>
|
|||
|
<div>
|
|||
|
<h2 class="title" style="clear: both"><a id="memplist"></a>Memory Pools and Related Methods</h2>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
<div class="navtable">
|
|||
|
<table border="1" width="80%">
|
|||
|
<thead>
|
|||
|
<tr>
|
|||
|
<th>Memory Pools and Related Methods</th>
|
|||
|
<th>Description</th>
|
|||
|
</tr>
|
|||
|
</thead>
|
|||
|
<tbody>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<a class="xref" href="dbmemory.html" title="DbMemoryException">DbMemoryException</a>
|
|||
|
</td>
|
|||
|
<td>Exception class for insufficient memory</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<a class="xref" href="dbget_mpf.html" title="Db::get_mpf()">Db::get_mpf()</a>
|
|||
|
</td>
|
|||
|
<td>Return the DbMpoolFile for a Db</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<a class="xref" href="mempstat.html" title="DbEnv::memp_stat()">DbEnv::memp_stat()</a>
|
|||
|
</td>
|
|||
|
<td>Return cache statistics</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<a class="xref" href="mempstat_print.html" title="DbEnv::memp_stat_print()">DbEnv::memp_stat_print()</a>
|
|||
|
</td>
|
|||
|
<td>Print cache statistics</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<a class="xref" href="mempsync.html" title="DbEnv::memp_sync()">DbEnv::memp_sync()</a>
|
|||
|
</td>
|
|||
|
<td>Flush all pages from the cache</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<a class="xref" href="memptrickle.html" title="DbEnv::memp_trickle()">DbEnv::memp_trickle()</a>
|
|||
|
</td>
|
|||
|
<td>Flush some pages from the cache</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td colspan="2">
|
|||
|
<span class="bold">
|
|||
|
<strong>Memory Pool Configuration</strong>
|
|||
|
</span>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<a class="xref" href="mempregister.html" title="DbEnv::memp_register()">DbEnv::memp_register()</a>
|
|||
|
</td>
|
|||
|
<td>Register a custom file type</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td><a class="xref" href="envset_cache_max.html" title="DbEnv::set_cache_max()">DbEnv::set_cache_max()</a>, <a class="xref" href="envget_cache_max.html" title="DbEnv::get_cache_max()">DbEnv::get_cache_max()</a></td>
|
|||
|
<td>Set/get the maximum cache size</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td><a class="xref" href="envset_cachesize.html" title="DbEnv::set_cachesize()">DbEnv::set_cachesize()</a>, <a class="xref" href="envget_cachesize.html" title="DbEnv::get_cachesize()">DbEnv::get_cachesize()</a></td>
|
|||
|
<td>Set/get the environment cache size</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td><a class="xref" href="mempset_mp_max_openfd.html" title="DbEnv::set_mp_max_openfd()">DbEnv::set_mp_max_openfd()</a>, <a class="xref" href="mempget_mp_max_openfd.html" title="DbEnv::get_mp_max_openfd()">DbEnv::get_mp_max_openfd()</a></td>
|
|||
|
<td>Set/get the maximum number of open file descriptors</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td><a class="xref" href="mempset_mp_max_write.html" title="DbEnv::set_mp_max_write()">DbEnv::set_mp_max_write()</a>, <a class="xref" href="mempget_mp_max_write.html" title="DbEnv::get_mp_max_write()">DbEnv::get_mp_max_write()</a></td>
|
|||
|
<td>Set/get the maximum number of sequential disk writes</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td><a class="xref" href="envset_mp_mmapsize.html" title="DbEnv::set_mp_mmapsize()">DbEnv::set_mp_mmapsize()</a>, <a class="xref" href="envget_mp_mmapsize.html" title="DbEnv::get_mp_mmapsize()">DbEnv::get_mp_mmapsize()</a></td>
|
|||
|
<td>Set/get maximum file size to memory map when opened read-only</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td><a class="xref" href="envset_mp_mtxcount.html" title="DbEnv::set_mp_mtxcount()">DbEnv::set_mp_mtxcount()</a>, <a class="xref" href="envget_mp_mtxcount.html" title="DbEnv::get_mp_mtxcount()">DbEnv::get_mp_mtxcount()</a></td>
|
|||
|
<td>Set/get the number of mutexes allocated to the hash table</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td><a class="xref" href="envset_mp_pagesize.html" title="DbEnv::set_mp_pagesize()">DbEnv::set_mp_pagesize()</a>, <a class="xref" href="envget_mp_pagesize.html" title="DbEnv::get_mp_pagesize()">DbEnv::get_mp_pagesize()</a></td>
|
|||
|
<td>Set/get page size to configure the buffer pool</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td><a class="xref" href="envset_mp_tablesize.html" title="DbEnv::set_mp_tablesize()">DbEnv::set_mp_tablesize()</a>, <a class="xref" href="envget_mp_tablesize.html" title="DbEnv::get_mp_tablesize()">DbEnv::get_mp_tablesize()</a></td>
|
|||
|
<td>Set/get the hash table size</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td colspan="2">
|
|||
|
<span class="bold">
|
|||
|
<strong>Memory Pool Files</strong>
|
|||
|
</span>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<a class="xref" href="mempfcreate.html" title="DbEnv::memp_fcreate()">DbEnv::memp_fcreate()</a>
|
|||
|
</td>
|
|||
|
<td>Create a memory pool file handle</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<a class="xref" href="mempfclose.html" title="DbMpoolFile::close()">DbMpoolFile::close()</a>
|
|||
|
</td>
|
|||
|
<td>Close a file in the cache</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<a class="xref" href="mempfget.html" title="DbMpoolFile::get()">DbMpoolFile::get()</a>
|
|||
|
</td>
|
|||
|
<td>Get page from a file in the cache</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<a class="xref" href="mempfopen.html" title="DbMpoolFile::open()">DbMpoolFile::open()</a>
|
|||
|
</td>
|
|||
|
<td>Open a file in the cache</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<a class="xref" href="mempput.html" title="DbMpoolFile::put()">DbMpoolFile::put()</a>
|
|||
|
</td>
|
|||
|
<td>Return a page to the cache</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<a class="xref" href="mempfsync.html" title="DbMpoolFile::sync()">DbMpoolFile::sync()</a>
|
|||
|
</td>
|
|||
|
<td>Flush pages from a file from the cache</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td colspan="2">
|
|||
|
<span class="bold">
|
|||
|
<strong>Memory Pool File Configuration</strong>
|
|||
|
</span>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td><a class="xref" href="mempset_clear_len.html" title="DbMpoolFile::set_clear_len()">DbMpoolFile::set_clear_len()</a>, <a class="xref" href="mempget_clear_len.html" title="DbMpoolFile::get_clear_len()">DbMpoolFile::get_clear_len()</a></td>
|
|||
|
<td>Set/get number of bytes to clear when creating a new page</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td><a class="xref" href="mempset_fileid.html" title="DbMpoolFile::set_fileid()">DbMpoolFile::set_fileid()</a>, <a class="xref" href="mempget_fileid.html" title="DbMpoolFile::get_fileid()">DbMpoolFile::get_fileid()</a></td>
|
|||
|
<td>Set/get file unique identifier</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td><a class="xref" href="mempset_flags.html" title="DbMpoolFile::set_flags()">DbMpoolFile::set_flags()</a>, <a class="xref" href="mempget_flags.html" title="DbMpoolFile::get_flags()">DbMpoolFile::get_flags()</a></td>
|
|||
|
<td>Set/get file options</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td><a class="xref" href="mempset_ftype.html" title="DbMpoolFile::set_ftype()">DbMpoolFile::set_ftype()</a>, <a class="xref" href="mempget_ftype.html" title="DbMpoolFile::get_ftype()">DbMpoolFile::get_ftype()</a></td>
|
|||
|
<td>Set/get file type</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td><a class="xref" href="mempset_lsn_offset.html" title="DbMpoolFile::set_lsn_offset()">DbMpoolFile::set_lsn_offset()</a>, <a class="xref" href="mempget_lsn_offset.html" title="DbMpoolFile::get_lsn_offset()">DbMpoolFile::get_lsn_offset()</a></td>
|
|||
|
<td>Set/get file log-sequence-number offset</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td><a class="xref" href="mempset_maxsize.html" title="DbMpoolFile::set_maxsize()">DbMpoolFile::set_maxsize()</a>, <a class="xref" href="mempget_maxsize.html" title="DbMpoolFile::get_maxsize()">DbMpoolFile::get_maxsize()</a></td>
|
|||
|
<td>Set/get maximum file size</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td><a class="xref" href="mempset_pgcookie.html" title="DbMpoolFile::set_pgcookie()">DbMpoolFile::set_pgcookie()</a>, <a class="xref" href="mempget_pgcookie.html" title="DbMpoolFile::get_pgcookie()">DbMpoolFile::get_pgcookie()</a></td>
|
|||
|
<td>Set/get file cookie for pgin/pgout</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td><a class="xref" href="mempset_priority.html" title="DbMpoolFile::set_priority()">DbMpoolFile::set_priority()</a>, <a class="xref" href="mempget_priority.html" title="DbMpoolFile::get_priority()">DbMpoolFile::get_priority()</a></td>
|
|||
|
<td>Set/get cache file priority</td>
|
|||
|
</tr>
|
|||
|
</tbody>
|
|||
|
</table>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
<div class="navfooter">
|
|||
|
<hr />
|
|||
|
<table width="100%" summary="Navigation footer">
|
|||
|
<tr>
|
|||
|
<td width="40%" align="left"><a accesskey="p" href="logcompare.html">Prev</a> </td>
|
|||
|
<td width="20%" align="center"> </td>
|
|||
|
<td width="40%" align="right"> <a accesskey="n" href="dbget_mpf.html">Next</a></td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td width="40%" align="left" valign="top">DbEnv::log_compare() </td>
|
|||
|
<td width="20%" align="center">
|
|||
|
<a accesskey="h" href="index.html">Home</a>
|
|||
|
</td>
|
|||
|
<td width="40%" align="right" valign="top"> Db::get_mpf()</td>
|
|||
|
</tr>
|
|||
|
</table>
|
|||
|
</div>
|
|||
|
</body>
|
|||
|
</html>
|