-
Notifications
You must be signed in to change notification settings - Fork 141
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
performance: pre-render html fully instead of at runtime #415
Merged
maartenbreddels
merged 1 commit into
master
from
12-08-performance_pre-render_html_fully_instead_of_at_runtime
Feb 16, 2024
Merged
performance: pre-render html fully instead of at runtime #415
maartenbreddels
merged 1 commit into
master
from
12-08-performance_pre-render_html_fully_instead_of_at_runtime
Feb 16, 2024
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Current dependencies on/for this PR: This stack of pull requests is managed by Graphite. |
maartenbreddels
force-pushed
the
11-13-fix_test_and_avoid_memory_leaks_by_checking_references_to_virtual_kernel
branch
from
December 11, 2023 11:41
d27f4b5
to
93cca6e
Compare
maartenbreddels
force-pushed
the
12-08-performance_pre-render_html_fully_instead_of_at_runtime
branch
from
December 11, 2023 11:42
7bf4573
to
dfb5e66
Compare
maartenbreddels
force-pushed
the
11-13-fix_test_and_avoid_memory_leaks_by_checking_references_to_virtual_kernel
branch
from
December 11, 2023 12:03
93cca6e
to
688c664
Compare
maartenbreddels
force-pushed
the
12-08-performance_pre-render_html_fully_instead_of_at_runtime
branch
from
December 11, 2023 12:04
dfb5e66
to
9397fd1
Compare
maartenbreddels
force-pushed
the
11-13-fix_test_and_avoid_memory_leaks_by_checking_references_to_virtual_kernel
branch
from
December 11, 2023 12:41
688c664
to
1a2518e
Compare
maartenbreddels
force-pushed
the
12-08-performance_pre-render_html_fully_instead_of_at_runtime
branch
from
December 11, 2023 12:41
9397fd1
to
8fad9f6
Compare
maartenbreddels
force-pushed
the
11-13-fix_test_and_avoid_memory_leaks_by_checking_references_to_virtual_kernel
branch
2 times, most recently
from
December 15, 2023 12:05
d779d85
to
0cb39df
Compare
maartenbreddels
force-pushed
the
12-08-performance_pre-render_html_fully_instead_of_at_runtime
branch
from
December 15, 2023 12:06
8fad9f6
to
766c6d4
Compare
maartenbreddels
force-pushed
the
11-13-fix_test_and_avoid_memory_leaks_by_checking_references_to_virtual_kernel
branch
from
December 15, 2023 12:07
0cb39df
to
0d4b349
Compare
maartenbreddels
force-pushed
the
12-08-performance_pre-render_html_fully_instead_of_at_runtime
branch
from
December 15, 2023 12:07
766c6d4
to
8ea1af5
Compare
maartenbreddels
force-pushed
the
11-13-fix_test_and_avoid_memory_leaks_by_checking_references_to_virtual_kernel
branch
from
December 18, 2023 15:25
0d4b349
to
ff1c89d
Compare
maartenbreddels
force-pushed
the
11-13-fix_test_and_avoid_memory_leaks_by_checking_references_to_virtual_kernel
branch
from
January 2, 2024 13:39
ff1c89d
to
4a7e206
Compare
maartenbreddels
force-pushed
the
12-08-performance_pre-render_html_fully_instead_of_at_runtime
branch
from
January 2, 2024 13:39
8ea1af5
to
6f4b44e
Compare
maartenbreddels
force-pushed
the
11-13-fix_test_and_avoid_memory_leaks_by_checking_references_to_virtual_kernel
branch
from
January 3, 2024 17:07
4a7e206
to
34a3873
Compare
maartenbreddels
force-pushed
the
12-08-performance_pre-render_html_fully_instead_of_at_runtime
branch
from
January 3, 2024 17:07
6f4b44e
to
9ab8042
Compare
maartenbreddels
force-pushed
the
11-13-fix_test_and_avoid_memory_leaks_by_checking_references_to_virtual_kernel
branch
from
January 12, 2024 13:02
34a3873
to
956fac4
Compare
maartenbreddels
force-pushed
the
12-08-performance_pre-render_html_fully_instead_of_at_runtime
branch
from
January 12, 2024 13:02
9ab8042
to
656ba36
Compare
maartenbreddels
force-pushed
the
11-13-fix_test_and_avoid_memory_leaks_by_checking_references_to_virtual_kernel
branch
from
February 9, 2024 17:33
956fac4
to
23e8262
Compare
maartenbreddels
force-pushed
the
12-08-performance_pre-render_html_fully_instead_of_at_runtime
branch
2 times, most recently
from
February 15, 2024 14:10
e2ed8e9
to
5c1cf89
Compare
maartenbreddels
changed the base branch from
11-13-fix_test_and_avoid_memory_leaks_by_checking_references_to_virtual_kernel
to
master
February 15, 2024 14:10
We still parsed the raw html at runtime and fed that back into the jinja template. We now do that as the ssg build phase, which gives much better performance.
maartenbreddels
force-pushed
the
12-08-performance_pre-render_html_fully_instead_of_at_runtime
branch
from
February 16, 2024 19:53
5c1cf89
to
bb346b2
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
We still parsed the raw html at runtime and fed that back into the
jinja template. We now do that as the ssg build phase, which gives
much better performance.