Backend & Databases ·
Bring Excel Workflows into Your Laravel Application
Import and export are not always enough; some users need spreadsheet-style work without repeatedly leaving the application.
For Developers & Technical Teams
Articles on databases, transactions, queues, integrations, and dependable backend processing.
8 articles
Backend & Databases ·
Import and export are not always enough; some users need spreadsheet-style work without repeatedly leaving the application.
Backend & Databases ·
Read-only access does not make a reporting tool harmless to production; expensive queries can still disrupt core operations.
Backend & Databases ·
A hot backup with replication can be safer than mysqldump when a large production database must keep accepting writes during migration.
Backend & Databases ·
Reading a value, changing it, and saving it in separate steps can lose concurrent updates; make the operation atomic or protect it with a transaction.
Backend & Databases ·
FLOAT and DOUBLE cannot represent many decimal fractions exactly, and tiny differences can become reconciliation and calculation errors.
Backend & Databases ·
A payment provider may deliver the same notification more than once; every retry must produce the same result without crediting an account twice.
Backend & Databases ·
Queues improve response time, but dependable processing still requires idempotency, controlled retries, monitoring, and correct worker operation.
Backend & Databases ·
Dozens of queues should not produce three drifting configuration copies; build a shared baseline and make each environment's differences explicit.