Karya Semi
HomeBlogSearchCategoriesAboutContact
Karya Semi

Less noise. More notes.

HomeBlogAboutContactPrivacy PolicyDisclaimer

© 2026 Karya Semi. All rights reserved.

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

Tag

Performance

Every published article tagged with Performance.
Illustration for Redis Caching Strategy Guide for High Performance Web Applications
Software Engineering/Aug 18, 2026

Redis Caching Strategy Guide for High Performance Web Applications

Optimize your system architecture with a proven redis caching strategy. Reduce database load, slash latency, and scale your web apps to handle peak traffic.

7 min read
RedisCaching
Illustration for Optimizing PostgreSQL Query Performance on Large Scale Tables
Software Engineering/Aug 18, 2026

Optimizing PostgreSQL Query Performance on Large Scale Tables

Boost database speed with proven postgresql query optimization techniques. Learn how to scale execution, tune indexes, and handle massive datasets efficiently.

6 min read
PostgreSQLDatabase
Illustration for PostgreSQL Partitioning vs Partial Indexing for Multitenant SaaS Performance
Programming/Aug 16, 2026

PostgreSQL Partitioning vs Partial Indexing for Multitenant SaaS Performance

Scale your SaaS database efficiently. Learn how to choose the right postgres multitenant index strategy by comparing table partitioning and partial indexes.

6 min read
PostgreSQLSaaS
Illustration for Moving Cron Curation Jobs from Cloud APIs to Local Small Language Models
Programming/Aug 15, 2026

Moving Cron Curation Jobs from Cloud APIs to Local Small Language Models

Migrate your background workflows from OpenAI to self-hosted models. Learn how to set up local llm cron jobs for summarization and ranking to cut API costs.

6 min read
LLMsDeveloper Tools
Illustration for Your SIMD Code Doesn't Need the CPU Anymore
Programming/Aug 11, 2026

Your SIMD Code Doesn't Need the CPU Anymore

VectorWare's breakthrough enables direct GPU execution for Rust SIMD, revolutionizing rust simd gpu programming 2026 for developers seeking peak performance.

4 min read
RustSimd
Illustration for C Finally Got Tail-Call Optimization. 50 Years Late.
Programming/Aug 11, 2026

C Finally Got Tail-Call Optimization. 50 Years Late.

C got tail-call optimization in 2025, decades after functional languages had it. The technical and political reasons behind the delay.

6 min read
C LanguageCompilers
Illustration for Building textlog, a Quiet and JavaScript-Free Microblogging Platform
Web Development/Aug 8, 2026

Building textlog, a Quiet and JavaScript-Free Microblogging Platform

Analyze the textlog quiet text only microblogging platform architecture no js codebase, engineered for minimal server footprints and offline-first syncing.

8 min read
Web ArchitectureHtml Only
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 Branchless Rust: Accelerating Data Filters by Eliminating Conditionals
Programming/Aug 6, 2026

Branchless Rust: Accelerating Data Filters by Eliminating Conditionals

Branch prediction failures can slow down tight hot loops. A practical look at implementing branchless programming patterns in Rust to speed up filter functions.

4 min read
RustOptimization
Illustration for Jelly UI: Bringing Soft-Body Physics to Native HTML Form Controls Without JS Bloat
Web Development/Jul 21, 2026

Jelly UI: Bringing Soft-Body Physics to Native HTML Form Controls Without JS Bloat

How Jelly UI uses WebGL shaders, Spring physics, and DOM overlay mechanics to create expressive UI interactions while preserving HTML form accessibility.

3 min read
WebdevJavaScript
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