chore: fix content

This commit is contained in:
Aaron Yarborough 2025-03-16 12:26:57 +00:00
parent b48e27ad43
commit 2e799464d3
4 changed files with 20 additions and 20 deletions

View file

@ -14,13 +14,13 @@ The [ConcurrentDictionary<TKey, TValue>](https://learn.microsoft.com/en-us/dotne
I define my dictionary, which creates a pairing between a connected TcpClient and a `ClientState` instance I use to track client-specific state, such as the player's username, last heartbeat, etc.
```c#
```csharp
private readonly ConcurrentDictionary<TcpClient, ClientState> _clients = new();
```
When a client connects, I add them to the dictionary.
```c#
```csharp
TcpClient client = await _tcpListener.AcceptTcpClientAsync();
ClientState clientState = new(client);
@ -44,7 +44,7 @@ When creating a new thread in dotnet, the OS assigns it its own memory region ca
Spawning thousands of threads also introduced a CPU load bottleneck in the form of 'context switching'. The CPU can only handle so many threads simultaneoulsy, roughly equal to the number of logical cores (e.g. 4 CPU cores = 4 threads, 8 with hyper threading = 16 threads, etc.) When the number of threads exceeds the number of cores avaialble, the CPU starts to 'context switch' which essentially means it flicks through all of the running threads giving them all a chance to run. This switching requires the CPU to work, which increases CPU load which would be better used processing game server requests (rather than switching between thosands of running threads!)
```c#
```csharp
TcpClient client = await _tcpListener.AcceptTcpClientAsync(); // <-- Async accpept TCP client
ClientState clientState = new(client);
@ -69,7 +69,7 @@ My initial approach was to create a new buffer of type `byte[]` and store the da
A great way to optimise this approach is by using dotnet's `ArrayPool<T>`, which is a dotnet-manged pool of arrays of any given type. This way, we ask dotnet for one of its arrays every time we want to store client data in a buffer for processing, and we simply release it (i.e. give it back to the pool) when we're done. Because dotnet manages this pool--the memory is already allocated and managed by dotnet for the arrays in its pool--we don't have to reserve and release memory for every buffer, releieving pressure on both our server's memory and CPU too, as the garbage collector has nothing to clean up!
```c#
```csharp
// Get a new array for the buffer from the pool
byte[] buffer = ArrayPool<byte>.Shared.Rent(client.ReceiveBufferSize);

View file

@ -34,7 +34,7 @@ The script consists of 4 deployment steps:
Before we do anything, we need to back up what we have already. I created a storage bucket specifically for holding backup files for this purpose, and use the gcloud CLI to copy the live files across to the backup bucket.
```
```sh
BUCKET_URL="gs://aaronjy-www"
BACKUP_BUCKET_URL="gs://aaronjy-www-backup"
@ -52,7 +52,7 @@ The backed-up files are copied into a dated folder, and the `--delete-from` flag
Because I'm using Decap CMS for content management locally, I need to manually remove the `admin/` folder where Decap lives, as I don't want that to be available on the live site.
```
```sh
echo "------------------------------"
echo "REMOVE SENSITIVE FILES"
echo "------------------------------"
@ -64,7 +64,7 @@ rm -rfv ./out/admin/
Now we come to actually uploading the new files to the live site. I take everything from the `/out` directory (where Next.js throws its build output) and upload them directly to the hosting bucket.
```
```sh
echo "------------------------------"
echo "UPLOADING NEW SITE FILES"
echo "------------------------------"
@ -78,7 +78,7 @@ The `--gzip-in-flight-all` is a handy edition, as the cli will apply gzip compre
As Google uses a global cache for bucket files, we must invalidate it to ensure users get the latest website version.
```
```sh
echo "------------------------------"
echo "INVALIDATING GLOBAL CACHE"
echo "------------------------------"
@ -94,7 +94,7 @@ This can take anywhere between 7-10 minutes, so the `--async` flag has been appl
Here's the deployment script in full:
```
```sh
BUCKET_URL="gs://aaronjy-www"
BACKUP_BUCKET_URL="gs://aaronjy-www-backup"

View file

@ -13,7 +13,7 @@ Say you have an SSG that uses MD files for the site's content. In order to edit
Your folder structure could look like this:
```
```text
site/
├─ content/
│ ├─ index.md <-- homepage
@ -54,7 +54,7 @@ Here's the gist of it:
Carrying on from our previous example, this is what our mapping file might look like:
```json
```text
{
"892c5a5c-1f77-43ce-a13a-b9d8bd02971c": [
"yummy/recipes", <-- The canonical/latest path

View file

@ -1,12 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:news="http://www.google.com/schemas/sitemap-news/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:mobile="http://www.google.com/schemas/sitemap-mobile/1.0" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xmlns:video="http://www.google.com/schemas/sitemap-video/1.1">
<url><loc>https://www.aaronjy.me/</loc><lastmod>2025-03-16T12:16:17.709Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url>
<url><loc>https://www.aaronjy.me/about/</loc><lastmod>2025-03-16T12:16:17.709Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url>
<url><loc>https://www.aaronjy.me/cv/</loc><lastmod>2025-03-16T12:16:17.709Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url>
<url><loc>https://www.aaronjy.me/writing/</loc><lastmod>2025-03-16T12:16:17.709Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url>
<url><loc>https://www.aaronjy.me/writing/moving-from-github-to-forgejo/</loc><lastmod>2025-03-16T12:16:17.709Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url>
<url><loc>https://www.aaronjy.me/writing/performance-considerations-tcp-game-server/</loc><lastmod>2025-03-16T12:16:17.709Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url>
<url><loc>https://www.aaronjy.me/writing/quick-reflection-katherine-may/</loc><lastmod>2025-03-16T12:16:17.709Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url>
<url><loc>https://www.aaronjy.me/writing/static-site-on-google-cloud/</loc><lastmod>2025-03-16T12:16:17.709Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url>
<url><loc>https://www.aaronjy.me/writing/support-content-filte-structure-changes-on-a-static-site/</loc><lastmod>2025-03-16T12:16:17.709Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url>
<url><loc>https://www.aaronjy.me/</loc><lastmod>2025-03-16T12:26:19.235Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url>
<url><loc>https://www.aaronjy.me/about/</loc><lastmod>2025-03-16T12:26:19.236Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url>
<url><loc>https://www.aaronjy.me/cv/</loc><lastmod>2025-03-16T12:26:19.236Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url>
<url><loc>https://www.aaronjy.me/writing/</loc><lastmod>2025-03-16T12:26:19.236Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url>
<url><loc>https://www.aaronjy.me/writing/moving-from-github-to-forgejo/</loc><lastmod>2025-03-16T12:26:19.236Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url>
<url><loc>https://www.aaronjy.me/writing/performance-considerations-tcp-game-server/</loc><lastmod>2025-03-16T12:26:19.236Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url>
<url><loc>https://www.aaronjy.me/writing/quick-reflection-katherine-may/</loc><lastmod>2025-03-16T12:26:19.236Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url>
<url><loc>https://www.aaronjy.me/writing/static-site-on-google-cloud/</loc><lastmod>2025-03-16T12:26:19.236Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url>
<url><loc>https://www.aaronjy.me/writing/support-content-filte-structure-changes-on-a-static-site/</loc><lastmod>2025-03-16T12:26:19.236Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url>
</urlset>