diff --git a/content/writing/performance-considerations-tcp-game-server.md b/content/writing/performance-considerations-tcp-game-server.md index 4616f6f..560ffe3 100644 --- a/content/writing/performance-considerations-tcp-game-server.md +++ b/content/writing/performance-considerations-tcp-game-server.md @@ -14,13 +14,13 @@ The [ConcurrentDictionary](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 _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`, 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.Shared.Rent(client.ReceiveBufferSize); diff --git a/content/writing/static-site-on-google-cloud.md b/content/writing/static-site-on-google-cloud.md index 5c1a6dc..8ce9376 100644 --- a/content/writing/static-site-on-google-cloud.md +++ b/content/writing/static-site-on-google-cloud.md @@ -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" diff --git a/content/writing/support-content-filte-structure-changes-on-a-static-site.md b/content/writing/support-content-filte-structure-changes-on-a-static-site.md index 4316687..56e6e76 100644 --- a/content/writing/support-content-filte-structure-changes-on-a-static-site.md +++ b/content/writing/support-content-filte-structure-changes-on-a-static-site.md @@ -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 diff --git a/public/sitemap-0.xml b/public/sitemap-0.xml index a751f06..6b949a8 100644 --- a/public/sitemap-0.xml +++ b/public/sitemap-0.xml @@ -1,12 +1,12 @@ -https://www.aaronjy.me/2025-03-16T12:16:17.709Zweekly0.7 -https://www.aaronjy.me/about/2025-03-16T12:16:17.709Zweekly0.7 -https://www.aaronjy.me/cv/2025-03-16T12:16:17.709Zweekly0.7 -https://www.aaronjy.me/writing/2025-03-16T12:16:17.709Zweekly0.7 -https://www.aaronjy.me/writing/moving-from-github-to-forgejo/2025-03-16T12:16:17.709Zweekly0.7 -https://www.aaronjy.me/writing/performance-considerations-tcp-game-server/2025-03-16T12:16:17.709Zweekly0.7 -https://www.aaronjy.me/writing/quick-reflection-katherine-may/2025-03-16T12:16:17.709Zweekly0.7 -https://www.aaronjy.me/writing/static-site-on-google-cloud/2025-03-16T12:16:17.709Zweekly0.7 -https://www.aaronjy.me/writing/support-content-filte-structure-changes-on-a-static-site/2025-03-16T12:16:17.709Zweekly0.7 +https://www.aaronjy.me/2025-03-16T12:26:19.235Zweekly0.7 +https://www.aaronjy.me/about/2025-03-16T12:26:19.236Zweekly0.7 +https://www.aaronjy.me/cv/2025-03-16T12:26:19.236Zweekly0.7 +https://www.aaronjy.me/writing/2025-03-16T12:26:19.236Zweekly0.7 +https://www.aaronjy.me/writing/moving-from-github-to-forgejo/2025-03-16T12:26:19.236Zweekly0.7 +https://www.aaronjy.me/writing/performance-considerations-tcp-game-server/2025-03-16T12:26:19.236Zweekly0.7 +https://www.aaronjy.me/writing/quick-reflection-katherine-may/2025-03-16T12:26:19.236Zweekly0.7 +https://www.aaronjy.me/writing/static-site-on-google-cloud/2025-03-16T12:26:19.236Zweekly0.7 +https://www.aaronjy.me/writing/support-content-filte-structure-changes-on-a-static-site/2025-03-16T12:26:19.236Zweekly0.7 \ No newline at end of file