GeistHaus
log in · sign up

Kagamino's Blog

Part of kagamino.dev

Recent content on Kagamino's Blog

stories primary
Computer setup
Editors

Of course as a programmer, I use some editors. My most used day-to-day are VSCode and Zed. VSCode extensions are really great, but when I need something really snappy, Zed is now the default. It has also gained a lot of possibilities recently, with the Debugger and Agent tooling.

https://blog.kagamino.dev/computer-setup/
PostgreSQL aggregation processing speed
Key takeaways

JSON is more efficient than JSONB when only reading data

JSONB is useful for data processing, when filtering data on the database. But in this test, the higher cost of creating JSONB is not worth it, and there is also a price to convert it back to text.

https://blog.kagamino.dev/posts/postgres-aggregation-speed/