小巧。快速。可靠。
三选二。

SQLite C 接口

自定义页面缓存对象

typedef struct sqlite3_pcache_page sqlite3_pcache_page;
struct sqlite3_pcache_page {
  void *pBuf;        /* The content of the page */
  void *pExtra;      /* Extra information associated with the page */
};

sqlite3_pcache_page 对象代表页面缓存中的单个页面。页面缓存将分配此对象的实例。页面缓存的各种方法使用指向此对象实例的指针作为参数或作为其返回值。

更多信息请参见 sqlite3_pcache_methods2

另请参见 对象常量函数 列表。