xref: /netbsd-src/external/public-domain/sqlite/man/sqlite3_pcache.3 (revision 82d56013d7b633d116a93943de88e08335357a7c)
1.Dd December 19, 2018
2.Dt SQLITE3_PCACHE 3
3.Os
4.Sh NAME
5.Nm sqlite3_pcache
6.Nd Custom Page Cache Object
7.Sh SYNOPSIS
8.Vt typedef struct sqlite3_pcache sqlite3_pcache;
9.Sh DESCRIPTION
10The sqlite3_pcache type is opaque.
11It is implemented by the pluggable module.
12The SQLite core has no knowledge of its size or internal structure
13and never deals with the sqlite3_pcache object except by holding and
14passing pointers to the object.
15.Pp
16See sqlite3_pcache_methods2 for additional information.
17.Sh SEE ALSO
18.Xr sqlite3_pcache_methods2 3
19