Karya Semi
HomeBlogSearchCategoriesAboutContact
Karya Semi

Less noise. More notes.

HomeBlogAboutContactPrivacy PolicyDisclaimer

© 2026 Karya Semi. All rights reserved.

XGitHubLinkedIn
  1. Home
  2. /Tags
  3. /Backend

Tag

Backend

Every published article tagged with Backend.
Illustration for Redis Pub/Sub vs Streams: Choosing the Right Event-Driven Pattern
Software Engineering/Aug 12, 2026

Redis Pub/Sub vs Streams: Choosing the Right Event-Driven Pattern

Redis pub sub vs streams event driven architecture: discover the key trade-offs for optimizing real-time event processing in distributed systems.

5 min read
RedisEvent Driven
Illustration for Optimizing P99 Database Latency: Techniques Beyond Simply Adding Indexes
Technology/Aug 6, 2026

Optimizing P99 Database Latency: Techniques Beyond Simply Adding Indexes

Fix tail latency in production databases by resolving buffer pool pollution, lock contention, micro-batching issues, and connection pooling bottlenecks.

6 min read
DatabasesPerformance
Illustration for Understanding Database Locks: Row, Page, and Table Level Mechanics
Software Engineering/Jul 20, 2026

Understanding Database Locks: Row, Page, and Table Level Mechanics

A practical breakdown of database locking mechanisms, isolation levels, and lock escalation to prevent deadlocks and performance degradation in production.

5 min read
DatabaseBackend
Illustration for How to Design a Reliable Webhook Receiver
Web Development/Jul 20, 2026

How to Design a Reliable Webhook Receiver

A practical guide to webhook receivers: signature checks, idempotency, retries, ordering, persistence, observability, and tests.

5 min read
WebhooksBackend
Illustration for Postgres Transactions Are a Hidden Superpower for Distributed Systems
Software Engineering/Jul 3, 2026

Postgres Transactions Are a Hidden Superpower for Distributed Systems

Before reaching for Kafka, Redis, or a dedicated message queue, consider what Postgres can already do. The database most teams already use has surprisingly powerful coordination primitives built in.

3 min read
PostgresDatabase