aboutsummaryrefslogtreecommitdiff
path: root/src/pcache1.c
Commit message (Expand)AuthorAge
* Record the pcache allocation size statistics even for pcache overflowdrh2010-07-28
* Add some 'const' markers to static data that is really constant.dan2010-06-02
* Add assert()s to mem2.c (activated by SQLITE_MEMDEBUG) which verify thatdrh2010-03-12
* Avoid unnecessary page cache allocations when move a page while autovacuuming drh2009-11-20
* Remove the obsolete "$Id:$" RCS identifier strings from the source code.drh2009-11-10
* More documentation and comment updates for sqlite3_initialize/shutdown interf...shane2009-08-17
* Code simplifications in support of structural testing. (CVS 6900)drh2009-07-17
* Code simplifications and comment improvements in support of structuraldrh2009-07-16
* Fix compiler warnings with MSVC build. (CVS 6741)shane2009-06-09
* Change the pcache1.c implementation so that the "header" occurs at the enddrh2009-06-03
* Add an assert() to pcache1.c to double-check that page cache buffer memory drh2009-05-22
* Additional changes to pcache1 to prevent the page buffer memory from beingdrh2009-05-22
* Make sure sqlite3_shutdown() completely disables the default pager cachedrh2009-05-22
* Correctly update the cache page-count when discarding pages in the xTruncate(...danielk19772009-05-08
* nMax can be zero and subtracting 1 from an unsigned zero produces undesirable...aswift2009-04-14
* Use the ROUND8() macro to round an integer up to the nearest multiple of 8 an...danielk19772009-03-23
* Begin purging dirty pages from the cache once 90% of the cache is dirty (inst...danielk19772009-03-05
* Optimization: When loading a new page into the cache, avoid redundant memset(...danielk19772009-01-23
* Fix for 'truncate file' operations on in-memory databases. (CVS 6131)danielk19772009-01-07
* More explicit type casting to silence VC++. (CVS 6006)drh2008-12-10
* Mark the hash table enlargement in pcache1.c as a benign-failure malloc. (CVS...drh2008-12-06
* Added cast to PAGE_TO_PGHDR1 macro to remove warning. It looks like despite ...shane2008-11-24
* Changes to avoid "unused parameter" compiler warnings. (CVS 5921)danielk19772008-11-19
* Fix compiler warnings in pcache1.c related to comparison of unsigned and sign...danielk19772008-11-15
* Add an API to support custom page cache implementations. (CVS 5899)danielk19772008-11-13