xref: /netbsd-src/external/public-domain/sqlite/man/sqlite3_pcache_page.3 (revision c38e7cc395b1472a774ff828e46123de44c628e9)
1.Dd March 11, 2017
2.Dt SQLITE3_PCACHE_PAGE 3
3.Os
4.Sh NAME
5.Nm sqlite3_pcache_page ,
6.Nm sqlite3_pcache_page
7.Nd Custom Page Cache Object
8.Sh SYNOPSIS
9.Vt typedef struct sqlite3_pcache_page sqlite3_pcache_page;
10.Vt struct sqlite3_pcache_page ;
11.Sh DESCRIPTION
12The sqlite3_pcache_page object represents a single page in the page
13cache.
14The page cache will allocate instances of this object.
15Various methods of the page cache use pointers to instances of this
16object as parameters or as their return value.
17.Pp
18See sqlite3_pcache_methods2 for additional information.
19.Sh SEE ALSO
20.Xr sqlite3_pcache_methods2 3
21