Skip to content
ITNotes ITNotes

From Terminal to Cloud

  • AI
  • DevOps
  • HomeLab
  • Linux
  • Networking
  • Programming
  • English
    • English
    • Tiếng Việt
    • 日本語
  • AI
  • DevOps
  • HomeLab
  • Linux
  • Networking
  • Programming
  • English
    • English
    • Tiếng Việt
    • 日本語
Home » postgresql » Page 2
Database tutorial - IT technology blog
Posted inDatabase

Real-Time Notifications: Stop Polling and Start Using Postgres LISTEN/NOTIFY

August 3, 2026
Stop hammering your database with constant polling. Use Postgres LISTEN/NOTIFY and Node.js to build a sub-millisecond notification system that scales without the overhead of a dedicated message broker.
Read More
Database tutorial - IT technology blog
Posted inDatabase

PostgreSQL Indexing: When B-Tree Isn’t Enough

August 2, 2026
PostgreSQL indexing goes far beyond B-Tree. Discover how GIN, GiST, and BRIN can slash query times and save gigabytes of disk space on large-scale databases.
Read More
Database tutorial - IT technology blog
Posted inDatabase

PostgreSQL Indexing: Stop Indexing Everything and Start Being Precise

July 28, 2026
Stop wasting disk space with bloated indexes. Learn how Partial and Functional indexes in PostgreSQL can reduce index size by 90% and make your queries nearly instantaneous.
Read More
Programming tutorial - IT technology blog
Posted inProgramming

Building a REST API with Axum and Rust: Type-Safe Services, SQLx Database Integration, and Docker Deployment

July 21, 2026
Learn to build a type-safe REST API with Axum and Rust, including SQLx compile-time SQL verification, proper error handling, and a multi-stage Docker deployment that produces minimal production images. Tips from real-world experience building and maintaining Rust services.
Read More
Database tutorial - IT technology blog
Posted inDatabase

Beyond OFFSET: Why Cursor-Based Pagination is the Only Way to Scale APIs

July 21, 2026
Is your API slowing down as your database grows? Discover why OFFSET is a performance killer and how to implement O(1) cursor-based pagination for massive datasets.
Read More
Database tutorial - IT technology blog
Posted inDatabase

PostgreSQL Job Queue with SKIP LOCKED and Advisory Locks: Background Tasks Without Redis or RabbitMQ

July 20, 2026
Learn how to build a reliable background job queue using PostgreSQL's SKIP LOCKED and Advisory Locks — no Redis or RabbitMQ required. Covers worker implementation in Python, retry logic with exponential backoff, per-resource locking, and queue monitoring using plain SQL.
Read More
Database tutorial - IT technology blog
Posted inDatabase

Stop Writing CRUD: Build a REST API Directly from PostgreSQL with PostgREST

July 20, 2026
Stop writing repetitive backend code. Learn how to use PostgREST to transform your PostgreSQL schema into a high-performance, secure REST API in minutes.
Read More
Database tutorial - IT technology blog
Posted inDatabase

Mastering Database Replication Lag: Monitor, Diagnose, and Fix Sync Delays in PostgreSQL and MySQL

July 19, 2026
Database replication lag can silently corrupt your users' experience — orders appearing unpaid, inventory showing wrong counts. This guide covers how to monitor replication lag in PostgreSQL and MySQL, diagnose the root cause across network, disk, and query layers, and apply targeted fixes including parallel replication and WAL tuning.
Read More
AI tutorial - IT technology blog
Posted inAI

AI-Driven SQL Optimization: Using LLMs to Decode Execution Plans

July 14, 2026
Learn how to automate SQL tuning by feeding PostgreSQL Execution Plans into LLMs. This guide shows you how to reduce query costs by 85% and prevent production bottlenecks.
Read More
Database tutorial - IT technology blog
Posted inDatabase

Time Travel in SQL: Using Temporal Tables in MariaDB and PostgreSQL

July 12, 2026
Don't let accidental updates ruin your night. Discover how to implement 'Time Travel' queries in MariaDB and PostgreSQL to recover data instantly and automate your audit trails.
Read More

Posts pagination

Previous page 1 2 3 4 … 9 Next page
Copyright 2026 — ITNotes. All rights reserved.
Privacy Policy | Terms of Service | Contact: [email protected] DMCA.com Protection Status
Scroll to Top