BUG: Inefficient page processing resulting in slow down #120
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Ran into a serious bug when it comes to processing pages on save.
With few pages (>20) there is no issue but as more content is created, the script that processes pages becomes slower and slower.
This is due to the script that collects all of the markdown files and makes them collections for use in Laravel is also called to re-process every single page when a new page is created or edited.
The solution is to only run the markdown collection script once so the app as the data it needs, then individually files as needed instead of running it over and over again
This is a blocking issue, so 3.1 will not be released until this is addressed.
Took a bit of doing, but this one has been cleared.
Page rendering times have been vastly improved and overall site performance is snappier.