Developer Logs

Join us on this journey through the challenges and intricacies of crafting fun gaming experiences!

  • EC2 WordPress Behind CloudFront Part 3

    There’s 2 more parts that’s really important to using a t3.micro instance with 20GB of disk space, and that’s to use swap memory, and to reduce the number of php processes. Since t3.micro only has 1GB of RAM, we want to give it 4GB of swap memory. The swap memory will be much slower since…

  • EC2 WordPress Behind CloudFront Part 2

    In the last post about my WordPress server configurations, I had the static pages working, but I couldn’t get dynamic pages working, and I had to use the EC2 public domain directly instead of the one configured in Route53 to use the dynamic pages. The main issue was that the CSS for the admin wouldn’t…

  • Object Churning

    I’ve been seeing OutOfMemory errors that crash my app for a while now. I haven’t really been able to consistently reproduce these errors, but I can see them negatively affecting my stats in the store. After copy-pasting my code to AI, it identified an issue called object churning. It’s when an object is allocated a…