1.Dd January 24, 2024 2.Dt SQLITE3_PCACHE 3 3.Os 4.Sh NAME 5.Nm sqlite3_pcache 6.Nd custom page cache object 7.Sh SYNOPSIS 8.In sqlite3.h 9.Vt typedef struct sqlite3_pcache sqlite3_pcache; 10.Sh DESCRIPTION 11The sqlite3_pcache type is opaque. 12It is implemented by the pluggable module. 13The SQLite core has no knowledge of its size or internal structure 14and never deals with the sqlite3_pcache object except by holding and 15passing pointers to the object. 16.Pp 17See sqlite3_pcache_methods2 for additional information. 18.Sh IMPLEMENTATION NOTES 19These declarations were extracted from the 20interface documentation at line 8880. 21.Bd -literal 22typedef struct sqlite3_pcache sqlite3_pcache; 23.Ed 24.Sh SEE ALSO 25.Xr sqlite3_pcache_methods2 3 26