Write everything, share everything.

A software engineer who loves to write about technology, programming, and life.

Preventing Race Condition in Laravel

Preventing Race Condition in Laravel

Let's consider a common scenario in an e-commerce system where two customers attempt to purchase the last available item simultaneously. Both customers check the inventory (showing 1 item), add it to their cart, and proceed to checkout

#database

#race condition

#laravel

Understanding Database Transactions in Laravel

Understanding Database Transactions in Laravel

Imagine you're building an e-commerce application where a customer places an order. This process involves multiple database operations: reducing inventory count, creating an order record, processing payment, and updating the customer's purchase history

#database

#transaction

#laravel