/ Changes On Branch pcache-bulk-local
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Changes In Branch pcache-bulk-local Excluding Merge-Ins

This is equivalent to a diff from 6d2999afbc to c1e2ed0ef4

2015-07-08
16:22
Enhance the pcache1 page cache so that it tries to allocate a block of SQLITE_DEFAULT_PCACHE_INITSZ pages from malloc() on startup, and uses those preallocated pages when possible rather than going to malloc() for each individual page. About a 5% performance increase for some workloads. (check-in: 5348ffc3fd user: drh tags: trunk)
14:13
Comment fix. No changes to code. (Closed-Leaf check-in: c1e2ed0ef4 user: drh tags: pcache-bulk-local)
13:40
Do not do the bulk pcache1 allocations if SQLITE_CONFIG_PAGECACHE specifies a global page cache buffer. (check-in: 75d98dae67 user: drh tags: pcache-bulk-local)
2015-07-06
20:27
Speed up seek operations on fts5 b-tree structures. (check-in: 7b7da1eb43 user: dan tags: trunk)
18:54
Enhance separate pcache1 to allocate a block of pages from heap on startup, if possible, for a 5.2% performance improvement. (check-in: aa7341c873 user: drh tags: pcache-bulk-local)
2015-07-05
22:15
Do not allow recursive CTEs that use aggregate queries in the recursive part. (check-in: 6d2999afbc user: drh tags: trunk)
2015-07-04
18:44
Optimize seek operations on fts5 b-trees. (check-in: 8cf02090ce user: dan tags: trunk)

Changes to src/btree.c.

Changes to src/global.c.

Changes to src/pcache1.c.

Changes to src/sqliteInt.h.

Changes to test/memdb.test.

Changes to test/memsubsys1.test.

Changes to test/pcache2.test.

Changes to test/speedtest1.c.