Skip to content

Commit

Permalink
fix: Use correct paths for links to other blog posts (#10)
Browse files Browse the repository at this point in the history
The relative links to other blog posts don't work correctly when
rendered.
  • Loading branch information
vitoyucepi authored Oct 27, 2024
1 parent a1d8494 commit 219e619
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions _posts/2024-10-26-a-faster-liquidsoap-part-deux.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Now, let's get to our in-depth stuff!

### Introduction

Now that we've explored the optimization of script loading in [the first part](2024-06-13-a-faster-liquidsoap) of this series,
Now that we've explored the optimization of script loading in [the first part](../2024-06-13-a-faster-liquidsoap) of this series,
it's time to look at the memory side of things!

For reference, here's a memory consumption chart we presented before:
Expand Down Expand Up @@ -208,7 +208,7 @@ streaming cycles (typically the duration of a frame).
If memory collection happens too often, this results in a noticeable increase of CPU usage and, if it takes too much time, this results in an increase in memory
usage.

We have [explored these issues in previous post](2023-07-09-memory-management) and given example of parameters that can govern this trade-off. In the future,
We have [explored these issues in previous post](../2023-07-09-memory-management) and given example of parameters that can govern this trade-off. In the future,
we would like to explore alternative memory allocation strategies to better control short term memory allocations inside the application.

### How to report memory usage
Expand Down Expand Up @@ -329,7 +329,7 @@ process_swapped_memory="0 B"}

Not only is it much faster to run, but it also uses `5x` less memory and reaches levels close to what `1.3.3` used to consume!

The reason is rooted in our [previous post](2024-06-13-a-faster-liquidsoap) about caching: script type-checking is
The reason is rooted in our [previous post](../2024-06-13-a-faster-liquidsoap) about caching: script type-checking is
very resource intensive so, when loading the script from the cache, we avoid an initial step that requires a lot
of memory allocations!

Expand Down

0 comments on commit 219e619

Please sign in to comment.