xref: /netbsd-src/external/public-domain/sqlite/man/sqlite3_pcache_page.3 (revision 7d62b00eb9ad855ffcd7da46b41e23feb5476fac)
1.Dd December 19, 2018
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