admin
More from admin

Our experience

Feb 4, 2025
2 min read
25 views
Optimizing Laravel with PHP OPcache: How to Reduce Page Load Time by Half

Laravel applications often contain a large number of files that need to be interpreted with each server request. In my project, the number of files reached 20,000, causing significant disk load and affecting page load speed. The solution to this problem was using PHP OPcache, which significantly reduced IOPS and doubled the speed of request […]

By admin

Our experience

2 min read
19 views
Complex Project: AWS ECS Cluster with Internal AWS NLB and Akka Cluster Discovery Protocol

Challenge: We deployed an AWS ECS Cluster using Terraform, with multiple application components communicating via AWS Network Load Balancer (NLB). The NLB was chosen because the application used a custom protocol (AKKA Cluster Discovery Protocol over TCP), which AWS ALB does not support. Initially, everything worked fine with an external-facing NLB, but the client requested […]

By admin

Our experience

Jan 27, 2025
2 min read
24 views
Example of AWS-Based Infrastructure Overview: Development, Staging, and Production Environments with CI/CD Integration.

The provided diagram illustrates three similar environments: development, staging, and production. Development and staging are hosted in the same AWS region, while production can optionally be deployed in a region of choice. The infrastructure includes the following components: AWS ECS (or optionally AWS Elastic Beanstalk) for application orchestration. AWS RDS for relational database management. AWS […]

By admin

Projects

Nov 28, 2024
4 min read
34 views
Features of Dockerizing Applications Written in Next.js

In this article, we describe the challenges faced by the Onix team while creating a Docker environment for a project written in Next.js. Background: A small project written in Next.js, consisting of a backend, frontend, and a database, needed to be deployed in a cloud environment with minimal costs (up to $50 per month). The […]

By admin

Uncategorized

2 min read
42 views
Outage in Kubernetes Development Cluster During High-Impact Usage

We maintain a dedicated infrastructure to host development environments (Dev environments) for various projects, independent of client resources, to streamline the development process.

By admin