Browsing Tag
performance
66 posts
Benchmark: Snowflake vs UUIDv4
This benchmark compares the performance of Snowflake and UUID. It was built using Go, Docker, SQLx, and PostgreSQL.…
Why Javascript has to be slower than C++
The primary reason is that javascript is an interpreted language Interpreted vs Compiled languages JavaScript is an interpreted…
🔥 FAST & FURIOUS WEBSITE 2024 🔥Tips & Links for performance optimization
Half of the users close a web page if it takes longer than 3 seconds to load. This…
Automating Baseline Profile end-to-end on CI
Generated With AI on Bing Baseline profile allows you to pre-package a list of classes and methods with APK…
My checklist for a production-ready website
This article was originally published at: My checklist for bringing a website to production – hungvu.tech. The article…
Why lowercase letters save data
Lowercase letters and uppercase letters use the same amout of data — 1 byte each. So, it’s surprising…
Indexes 101: What They Are, Why They Matter, and How to Use Them in PostgreSQL
Introduction In the intricate realm of databases, indexes stand as silent heroes, enhancing the performance of queries and…
Transaction Per Second (TPS)
In the blockchain world, transactions per second (TPS) metrics measure the number of transactions a blockchain can process…
Resizing images on-the-fly
As a web architect, one of the many issues is asset management. And the most significant issue in…
Laravel routes: apiResource vs resource
Laravel routes application: using apiResource and resource. These methods help you create routes for a resource controller, following…