Fedora tutorial - IT technology blog

Using Podman Compose on Fedora: Replacing Docker Compose for Rootless Multi-Container Application Management

Podman Compose lets you run multi-container stacks on Fedora without needing a Docker daemon or root privileges. This article compares four approaches — Docker Compose, Podman Pods, Quadlet, and Podman Compose — then walks through a real-world deployment with a web app, PostgreSQL, and Redis, including notes on SELinux and rootless port handling.
Database tutorial - IT technology blog

pg_stat_statements in PostgreSQL: Find and Optimize Resource-Hungry SQL Queries

pg_stat_statements is a PostgreSQL extension that runs in the background and continuously accumulates execution statistics for every SQL statement, letting you pinpoint exactly which queries are consuming the most CPU, I/O, and time. This guide walks through installation, configuration, and practical analysis queries to track down performance bottlenecks in PostgreSQL.