Mercurial > piecrust2
view tests/bakes/test_pagination.yaml @ 411:e7b865f8f335
bake: Enable multiprocess baking.
Baking is now done by running a worker per CPU, and sending jobs to them.
This changes several things across the codebase:
* Ability to not cache things related to pages other than the 'main' page
(i.e. the page at the bottom of the execution stack).
* Decouple the baking process from the bake records, so only the main process
keeps track (and modifies) the bake record.
* Remove the need for 'batch page getters' and loading a page directly from
the page factories.
There are various smaller changes too included here, including support for
scope performance timers that are saved with the bake record and can be
printed out to the console. Yes I got carried away.
For testing, the in-memory 'mock' file-system doesn't work anymore, since
we're spawning processes, so this is replaced by a 'tmpfs' file-system which
is saved in temporary files on disk and deleted after tests have run.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Fri, 12 Jun 2015 17:09:19 -0700 |
parents | 879b6b5647a8 |
children | 45ad976712ec |
line wrap: on
line source
--- config: site: posts_per_page: 3 pagination_suffix: /page%num% in: posts/2015-03-01_post01.md: "---\ntitle: Post 01\n---\n" posts/2015-03-02_post02.md: "---\ntitle: Post 02\n---\n" posts/2015-03-03_post03.md: "---\ntitle: Post 03\n---\n" posts/2015-03-04_post04.md: "---\ntitle: Post 04\n---\n" posts/2015-03-05_post05.md: "---\ntitle: Post 05\n---\n" posts/2015-03-06_post06.md: "---\ntitle: Post 06\n---\n" posts/2015-03-07_post07.md: "---\ntitle: Post 07\n---\n" pages/_index.md: '' pages/foo.md: | {%- for p in pagination.items -%} {{p.url}} {{p.title}} {% endfor -%} {{pagination.prev_page}} {{pagination.this_page}} {{pagination.next_page}} outfiles: foo.html: | /2015/03/07/post07.html Post 07 /2015/03/06/post06.html Post 06 /2015/03/05/post05.html Post 05 None /foo.html /foo/page2.html foo/page2.html: | /2015/03/04/post04.html Post 04 /2015/03/03/post03.html Post 03 /2015/03/02/post02.html Post 02 /foo.html /foo/page2.html /foo/page3.html foo/page3.html: | /2015/03/01/post01.html Post 01 /foo/page2.html /foo/page3.html None --- config: site: posts_per_page: 3 in: posts/2015-03-01_post01.md: | --- title: Post 01 tags: [foo] --- posts/2015-03-02_post02.md: | --- title: Post 02 tags: [foo] --- posts/2015-03-03_post03.md: | --- title: Post 03 tags: [foo] --- posts/2015-03-04_post04.md: | --- title: Post 04 tags: [foo] --- posts/2015-03-05_post05.md: | --- title: Post 05 tags: [foo] --- pages/_index.md: '' pages/_tag.md: | Posts with {{tag}} {% for p in pagination.items -%} {{p.url}} {{p.title}} {% endfor -%} {{pagination.prev_page}} {{pagination.this_page}} {{pagination.next_page}} outfiles: tag/foo.html: | Posts with foo /2015/03/05/post05.html Post 05 /2015/03/04/post04.html Post 04 /2015/03/03/post03.html Post 03 None /tag/foo.html /tag/foo/2.html