Be careful with ActiveRecord eager loading
When using ActiveRecord to load data, we will sometimes encounter cases where things do not work as we would like. That's because depending on each condition, ActiveRecord will choose or combine…
When using ActiveRecord to load data, we will sometimes encounter cases where things do not work as we would like. That's because depending on each condition, ActiveRecord will choose or combine…
Surely you have ever had an unpleasant feeling when visiting a certain website: the design is too rough, there are too many words, the scrolling is difficult to scroll... I…
When building a web application, you will often use frameworks or support libraries. Although they themselves have a clear structure and rules, in many cases you still wonder where or how…
Introduce Hello everyone, in this article we will learn about Elasticache, we will learn what it is and why we should use it when we work on the AWS system.…
Deploying laravel on EC2 aws is simple Today, I will guide you through the steps to deploy a laravel project to ec2 aws with ngix. Create linux ec2 instance and…
Throughout the interviews I've participated in, most people tend to utilize the Repository pattern in their projects, with the common purpose being "to facilitate database changes and code reuse." The…