Currently, generating the all page requires data from, well, all pages, making it slow and high memory (since all the pages need to remain in the memory). If we could adapt our pipeline somehow to make this page able to use the existing pages and simply append them together, it would make this process much faster and much less memory intensive.
Keep in mind this is a difficult task, despite the seemingly simplicity of this issue. Since we output pages complete with sidebars, navbars, etc, one can't simple do html + html + html.
Currently, generating the all page requires data from, well, all pages, making it slow and high memory (since all the pages need to remain in the memory). If we could adapt our pipeline somehow to make this page able to use the existing pages and simply append them together, it would make this process much faster and much less memory intensive.
Keep in mind this is a difficult task, despite the seemingly simplicity of this issue. Since we output pages complete with sidebars, navbars, etc, one can't simple do
html + html + html.