Skip to content

WorthPosting

  • Home
  • About

Author: teliaz

Cat Links AI News

RAG Chunking Strategies in 2026: What the Benchmarks Actually Show

Posted on September 12, 2026 teliaz

Every RAG system has two halves: a retriever that decides which text the model sees, and a generator that answers

Continue readingRAG Chunking Strategies in 2026: What the Benchmarks Actually Show

Cat Links Software Engineering

Structured Logging in Go: slog, OpenTelemetry, and the Fields That Matter in Production

Posted on September 12, 2026 teliaz

At 02:14 on a Sunday, an alert fires: payment success rate dropped four percent. You run kubectl logs across a

Continue readingStructured Logging in Go: slog, OpenTelemetry, and the Fields That Matter in Production

Cat Links Software Engineering

gRPC Server Reflection in Production: Gate It, and Use Health Checks Instead

Posted on September 11, 2026 teliaz

Here is a debugging story that repeats across every gRPC team. A developer runs grpcurl -plaintext localhost:50051 list against a

Continue readinggRPC Server Reflection in Production: Gate It, and Use Health Checks Instead

Cat Links Software Engineering

LLM Routing and Cascading: Send Every Query to the Cheapest Model That Can Handle It

Posted on September 11, 2026September 12, 2026 teliaz

If you run a large language model behind a product, you have probably internalized an uncomfortable trade-off. The big frontier

Continue readingLLM Routing and Cascading: Send Every Query to the Cheapest Model That Can Handle It

Cat Links Software Engineering

MVCC and VACUUM in PostgreSQL: Dead Tuples, Autovacuum Tuning, and What PG18 Changed

Posted on September 10, 2026September 11, 2026 teliaz

Every UPDATE in PostgreSQL is secretly an INSERT-plus-a-tombstone. The old row version stays on disk, fully readable to any transaction

Continue readingMVCC and VACUUM in PostgreSQL: Dead Tuples, Autovacuum Tuning, and What PG18 Changed

Cat Links AI News

LLM Quantization Explained: GPTQ, AWQ, GGUF, and When Each One Wins

Posted on September 10, 2026September 11, 2026 teliaz

Serving a 7B model in fp16 takes roughly 14 GB of VRAM. A 70B model takes around 140 GB —

Continue readingLLM Quantization Explained: GPTQ, AWQ, GGUF, and When Each One Wins

Cat Links Software Engineering

epoll Under the Hood: How Linux Event Loops Actually Work

Posted on September 9, 2026 teliaz

Every high-concurrency network server on Linux eventually converges on the same bottleneck: not CPU, not memory, but the question of

Continue readingepoll Under the Hood: How Linux Event Loops Actually Work

Cat Links Software Engineering

Defending Against Supply Chain Attacks: An npm and PyPI Defense Playbook

Posted on September 9, 2026September 10, 2026 teliaz

When a popular npm package turns malicious, the window between publication and detection is measured in hours, and the first

Continue readingDefending Against Supply Chain Attacks: An npm and PyPI Defense Playbook

Cat Links Software Engineering

The Rust Borrow Checker Demystified: Aliasing, Memory Model, and When to Fight Back

Posted on September 8, 2026 teliaz

What the borrow checker actually enforces, what Rust’s memory model promises, and which patterns — RefCell, Mutex, ownership restructuring — resolve the common contention points. … Continue readingThe Rust Borrow Checker Demystified: Aliasing, Memory Model, and When to Fight Back

Cat Links Software Engineering

The Transactional Outbox Pattern: Reliable Events Without Distributed Transactions

Posted on September 8, 2026 teliaz

Solve the dual-write problem with one extra table and SKIP LOCKED: a working Go implementation of the transactional outbox, plus the delivery-semantics gotchas that bite in production. … Continue readingThe Transactional Outbox Pattern: Reliable Events Without Distributed Transactions

Posts navigation

Older posts
  • Home
  • About
Copyright © 2026 WorthPosting | Signify by WEN Themes
Scroll Up