Technology

Importing Huge MySQL Database

Importing large MySQL database dumps can be challenging, especially when dealing with AWS RDS snapshots and potential errors during the process. This guide e...

Handling Race Conditions in Rails

When developing web applications using Ruby on Rails, you’ll often encounter situations where you need to either find a record in your database or create a n...

Be Careful With Your Database Migration

In the early stage as a Start-Up, we do many experiments to prove our assumption to reach product market fit. Updating database schema could be a daily or we...

Speed up Rails controller speed easily

When we adding a Rails controller action, especially for #show. Usually it would be like this: def show post = Post.find(params[:id]) render json: post...