Tagged articles

Performance

5000 articles · Page 4 of 50
Machine Learning Algorithms & Natural Language Processing
Machine Learning Algorithms & Natural Language Processing
Apr 27, 2026 · Artificial Intelligence

SkVM: A Language VM for Skill Enables One‑Write, Everywhere‑Efficient Execution on Any LLM

SkVM, an open‑source language virtual machine from Shanghai Jiao Tong University’s IPADS team, compiles Skill code once and runs it efficiently across diverse LLMs and Agent harnesses, delivering up to 50× speedups, 40% token savings, and performance comparable to Opus 4.6 on 30B models.

AgentCompilationLLM
0 likes · 10 min read
SkVM: A Language VM for Skill Enables One‑Write, Everywhere‑Efficient Execution on Any LLM
TonyBai
TonyBai
Apr 27, 2026 · Industry Insights

Why Render Sticks with Go and Never Plans to Rewrite Its Load Balancer in Rust

The article dissects Render's claim that its Go‑based load balancer processes over 150 billion requests monthly, why the team sees zero reason to rewrite it in Rust, and how this debate reveals deeper engineering trade‑offs between Go's simplicity and Rust's performance, especially at massive scale and in the AI era.

AIEngineering PhilosophyGo
0 likes · 10 min read
Why Render Sticks with Go and Never Plans to Rewrite Its Load Balancer in Rust
Java Architect Essentials
Java Architect Essentials
Apr 26, 2026 · Backend Development

15 SpringBoot Performance Tweaks to Handle Million-Scale Concurrency

This guide walks through exposing metrics, integrating Prometheus and Grafana, using async‑profiler flame graphs, tuning Tomcat/Undertow, optimizing JVM flags, applying SkyWalking tracing, and applying layer‑wise code, cache, and thread‑pool improvements so a SpringBoot service can reliably serve millions of concurrent requests.

GrafanaPerformanceSkyWalking
0 likes · 20 min read
15 SpringBoot Performance Tweaks to Handle Million-Scale Concurrency
dbaplus Community
dbaplus Community
Apr 26, 2026 · Databases

Why PostgreSQL Is the Better Choice in 99% of Scenarios

The article argues that relying on many specialized databases creates operational complexity, higher costs, and maintenance overhead, while PostgreSQL’s extensible ecosystem—offering full‑text search, vector, time‑series, JSONB, and more—delivers comparable or superior algorithms, proven performance, and a simpler, more reliable stack for the vast majority of use cases, especially in AI applications.

AIDatabaseFull-text Search
0 likes · 19 min read
Why PostgreSQL Is the Better Choice in 99% of Scenarios
James' Growth Diary
James' Growth Diary
Apr 26, 2026 · Backend Development

Fast Path and Parallel Prefetch: The Secret to Sub‑Second CLI Startup

The article dissects Claude Code's sub‑second startup by explaining how a beta header enables Fast Mode, how parallel prefetch of MDM configuration and macOS Keychain is orchestrated with Promise.all in a preAction hook, and how multi‑layer gating and a cooldown mechanism ensure safe, recoverable performance gains.

CLICooldownFast mode
0 likes · 16 min read
Fast Path and Parallel Prefetch: The Secret to Sub‑Second CLI Startup
AI Engineering
AI Engineering
Apr 26, 2026 · Artificial Intelligence

OpenClaw 4.24 Brings Voice Call Support, Faster DeepSeek Models, and Smarter Browser Automation

OpenClaw’s 4.24 release adds full voice call capability for AI agents, integrates DeepSeek V4 Flash and Pro models with a 40% inference speed boost, and enhances browser automation with coordinate clicking and error recovery, while also improving Telegram/Slack handling, multi‑channel stability, and TTS naturalness.

AI ModelsDeepSeekOpenClaw
0 likes · 3 min read
OpenClaw 4.24 Brings Voice Call Support, Faster DeepSeek Models, and Smarter Browser Automation
Spring Full-Stack Practical Cases
Spring Full-Stack Practical Cases
Apr 26, 2026 · Backend Development

Why Misusing JPA findById Hurts Performance and Causes Critical Pitfalls

The article dissects how the default JpaRepository findById method can trigger unnecessary SELECT queries, create foreign‑key violations under concurrency, and degrade performance, then demonstrates three concrete workarounds—including getReferenceById, manual entity construction, and pessimistic read locking—to eliminate these issues.

JPAPerformancePessimistic Lock
0 likes · 8 min read
Why Misusing JPA findById Hurts Performance and Causes Critical Pitfalls
Top Architect
Top Architect
Apr 25, 2026 · Backend Development

Why Pingora Is Overtaking Nginx as the New Web Server Champion

Cloudflare replaced Nginx with its home‑grown Rust‑based proxy Pingora, citing architectural limits of Nginx's worker model, superior performance, lower CPU/memory usage, better connection reuse, richer feature support, and stronger memory safety, all backed by extensive production metrics.

CloudflareHTTP ProxyPerformance
0 likes · 14 min read
Why Pingora Is Overtaking Nginx as the New Web Server Champion
Code Mala Tang
Code Mala Tang
Apr 25, 2026 · Artificial Intelligence

Why Claude Feels Nerfed Without a Formal Downgrade: A Deep Dive into System‑Level Performance Changes

The article examines the recent Claude performance controversy, showing that engineering adjustments to inference parameters, cache handling, and system prompts rewrote the model’s behavior, making it answer faster but think shallower, leading users to perceive a degradation despite no official model downgrade.

AICacheClaude
0 likes · 14 min read
Why Claude Feels Nerfed Without a Formal Downgrade: A Deep Dive into System‑Level Performance Changes
Deepin Linux
Deepin Linux
Apr 25, 2026 · Fundamentals

Mastering Mutex Locks: Solving Linux Kernel Synchronization Challenges in One Article

This article provides a comprehensive deep‑dive into Linux kernel mutex locks, explaining their principles, implementation, and APIs, and demonstrates through detailed C/C++ examples how to use them safely to avoid data races, deadlocks, and performance bottlenecks in multithreaded kernel and user‑space code.

DeadlockLinux kernelMultithreading
0 likes · 46 min read
Mastering Mutex Locks: Solving Linux Kernel Synchronization Challenges in One Article
Machine Heart
Machine Heart
Apr 23, 2026 · Artificial Intelligence

DeepSeek Unveils Tile Kernels and DeepEP V2 – Is V4 on the Horizon?

DeepSeek recently opened the Tile Kernels repository and released DeepEP V2, detailing new GPU kernel features, a fully JIT-enabled expert parallelism redesign that boosts peak performance by up to 1.3× while cutting SM usage fourfold, and hinting at an upcoming V4 release.

DeepEP V2DeepSeekExpert Parallelism
0 likes · 6 min read
DeepSeek Unveils Tile Kernels and DeepEP V2 – Is V4 on the Horizon?
Architect Chen
Architect Chen
Apr 23, 2026 · Databases

The Most Complete Redis Configuration Guide with Illustrated Examples

This article provides a thorough walkthrough of Redis configuration, covering the location of the redis.conf file, how to list all settings with CONFIG GET *, modify parameters via CONFIG SET, and detailed explanations of common options such as bind address, port, timeout, log level, database count, daemonization, log file, client limits, memory limits, persistence settings, replication, and password protection, each illustrated with concrete command examples.

CONFIGConfigurationPerformance
0 likes · 6 min read
The Most Complete Redis Configuration Guide with Illustrated Examples
Architect's Guide
Architect's Guide
Apr 23, 2026 · Databases

Is JOIN Faster Than IN in MySQL Queries? A Practical Performance Test

The article experimentally compares MySQL JOIN and IN queries across small, medium, and large data sets, showing that JOIN is generally faster for modest volumes while IN can become impractically long and error‑prone with massive lists, leaving neither approach ideal for all scenarios.

JOINMySQLPHP
0 likes · 8 min read
Is JOIN Faster Than IN in MySQL Queries? A Practical Performance Test
Java Architect Essentials
Java Architect Essentials
Apr 22, 2026 · Fundamentals

Beware of BigDecimal Pitfalls: When Precision Errors Can Cost You

This article explains why using Java's BigDecimal for high‑precision calculations requires careful constructor selection, demonstrates the hidden errors of the double‑based constructor, shows how to format and compare values, and provides a utility class with safe arithmetic methods.

ArithmeticBigDecimalJava
0 likes · 24 min read
Beware of BigDecimal Pitfalls: When Precision Errors Can Cost You
Open Source Tech Hub
Open Source Tech Hub
Apr 22, 2026 · Backend Development

Swoole‑Compiler v4 Introduces a Native PHP AOT Compiler Boosting Execution Speed Up to 150×

The Swoole‑Compiler v4 adds a native Ahead‑of‑Time (AOT) compiler that transforms PHP scripts into standalone binaries, eliminating the ZendVM interpreter, achieving up to 150× speed gains in intensive calculations such as Fibonacci and π, while detailing supported syntax, limitations, C/C++ interop, real‑world Workerman testing, and future roadmap.

AOTBenchmarkPHP
0 likes · 19 min read
Swoole‑Compiler v4 Introduces a Native PHP AOT Compiler Boosting Execution Speed Up to 150×
ByteDance Web Infra
ByteDance Web Infra
Apr 22, 2026 · Frontend Development

Rspack 2.0 Released – Up to 10× Faster Builds, New ESM Support and RSC

Rspack 2.0 launches with up to 10 × build speed gains over version 1.0, refined default APIs, pure‑ESM packages, enhanced tree‑shaking, React Server Components support, simplified target configuration, hash‑based module IDs and improved code‑splitting, while maintaining webpack compatibility and expanding ecosystem integrations.

Build ToolESMPerformance
0 likes · 24 min read
Rspack 2.0 Released – Up to 10× Faster Builds, New ESM Support and RSC
Tencent Cloud Developer
Tencent Cloud Developer
Apr 22, 2026 · Artificial Intelligence

How Cube Sandbox Achieves Sub‑60ms Secure AI Agent Execution

Tencent Cloud open‑sources Cube Sandbox, a hardware‑isolated, sub‑60 ms startup sandbox for AI agents that is E2B‑compatible, dramatically reduces memory usage, supports continuous "think‑execute‑feedback" loops, and outperforms traditional Docker‑based sandboxes in speed, security, and scalability.

AI AgentsE2BPerformance
0 likes · 7 min read
How Cube Sandbox Achieves Sub‑60ms Secure AI Agent Execution
Architecture & Thinking
Architecture & Thinking
Apr 22, 2026 · Backend Development

Why Traditional Limit‑Offset Fails on Billion‑Row Tables and How to Fix It

This article dissects the performance collapse of classic LIMIT‑OFFSET pagination on tables with hundreds of millions of rows, explains the underlying execution steps, presents benchmark data, and walks through a progressive set of solutions—including index tuning, Seek pagination, Cursor pagination, and sharding—complete with Go code examples and practical trade‑offs.

Cursor PaginationMySQLPagination
0 likes · 30 min read
Why Traditional Limit‑Offset Fails on Billion‑Row Tables and How to Fix It
Architects' Tech Alliance
Architects' Tech Alliance
Apr 22, 2026 · Industry Insights

How Huawei’s Ascend AI Chips Evolve: From 910C to 970 – Architecture, Performance, and Market Impact

The article analyzes Huawei’s Ascend AI chip roadmap, detailing the progression from the 910C baseline to the 950, 960/970 generations, highlighting compute scaling, low‑precision formats, memory and interconnect upgrades, cost advantages, and their implications for large‑model AI workloads.

AI chipsAscendHuawei
0 likes · 7 min read
How Huawei’s Ascend AI Chips Evolve: From 910C to 970 – Architecture, Performance, and Market Impact
Liangxu Linux
Liangxu Linux
Apr 21, 2026 · Industry Insights

Is Clear Linux Worth the Hassle? A Deep Dive into Performance vs. Usability

Clear Linux delivers impressive Intel‑optimized performance but demands a steep learning curve, a niche package manager, and constant rolling updates, making it ideal for performance‑critical, Intel‑based workloads while less suitable for everyday development or production environments that prioritize stability and ecosystem support.

Clear LinuxIntelLinux Distribution
0 likes · 5 min read
Is Clear Linux Worth the Hassle? A Deep Dive into Performance vs. Usability
Tinker Programmer
Tinker Programmer
Apr 21, 2026 · Backend Development

Master Go Interview: From Project Engineering to Low‑Level Internals in One Guide

This comprehensive guide covers the most frequent Go interview topics for 2026, including project engineering, slice and map internals, interface mechanics, the GMP scheduler, channel implementation, context usage, memory‑leak pitfalls, pprof profiling, garbage‑collection details, escape analysis, memory alignment, defer traps, sync.Pool, and reflection, all illustrated with concrete code examples and step‑by‑step explanations.

GCGoInterview
0 likes · 35 min read
Master Go Interview: From Project Engineering to Low‑Level Internals in One Guide
dbaplus Community
dbaplus Community
Apr 20, 2026 · Operations

Unlock Lightning‑Fast Log Troubleshooting with Grep, Sed, and Awk

When a massive Nginx outage struck on a Double‑Eleven night, the author solved the crisis in seconds using a single‑line grep‑sed‑awk pipeline, then explains why these three Unix tools remain essential for any SRE or sysadmin dealing with huge log files.

Log analysisPerformanceShell scripting
0 likes · 38 min read
Unlock Lightning‑Fast Log Troubleshooting with Grep, Sed, and Awk
Go Development Architecture Practice
Go Development Architecture Practice
Apr 20, 2026 · Fundamentals

Why Go Struct Pointers Boost Performance: Deep Dive and Best Practices

This article explains how Go struct pointers work, compares value and pointer passing with concrete code examples, demonstrates memory and speed benefits for large structs, shows how to use pointers in function parameters and interfaces, and provides best‑practice guidelines and a real‑world case study showing up to 70% memory savings and 40% speed gains.

GoMemory EfficiencyPerformance
0 likes · 9 min read
Why Go Struct Pointers Boost Performance: Deep Dive and Best Practices
Java Tech Workshop
Java Tech Workshop
Apr 20, 2026 · Backend Development

Optimizing SpringBoot Batch Insert/Update with MyBatis: Real‑World Tips for High‑Volume Data

This article explains why naïve per‑record inserts or updates in SpringBoot cause severe performance problems, analyzes three common mistakes, and demonstrates how MyBatis batch processing—through connection reuse, prepared‑statement reuse, and batch transaction commits—can speed up operations by tens of times, with practical code examples and configuration tips for handling millions of rows.

DatabaseJavaMyBatis
0 likes · 21 min read
Optimizing SpringBoot Batch Insert/Update with MyBatis: Real‑World Tips for High‑Volume Data
Open Source Tech Hub
Open Source Tech Hub
Apr 20, 2026 · Artificial Intelligence

Why PHP Can Outperform Python for AI Agents: Introducing Neuron AI with Webman

The article explains how the Neuron AI framework enables PHP developers to build, orchestrate, and deploy multi‑agent AI solutions using the high‑performance Webman server, compares it with Python‑based alternatives, provides step‑by‑step code examples, and demonstrates real‑world scenarios and performance benchmarks.

AI AgentsNeuronPHP
0 likes · 11 min read
Why PHP Can Outperform Python for AI Agents: Introducing Neuron AI with Webman
Smart Workplace Lab
Smart Workplace Lab
Apr 19, 2026 · Industry Insights

How to Turn AI-Boosted Productivity into Visible Performance Metrics

This article presents a practical framework for documenting AI‑enhanced work contributions, introducing a weekly performance‑evidence matrix that quantifies decision density, risk interception, and asset accumulation, along with communication scripts tailored to different manager types and step‑by‑step SOPs for archiving proof, helping professionals turn speed gains into measurable performance value.

AIEvidencePerformance
0 likes · 7 min read
How to Turn AI-Boosted Productivity into Visible Performance Metrics
Raymond Ops
Raymond Ops
Apr 19, 2026 · Cloud Native

How to Double K8s Ingress Performance: Nginx vs Envoy Gateway Tuning Guide

This article walks through a real‑world performance bottleneck on a high‑traffic e‑commerce platform, explains step‑by‑step deep tuning of Nginx Ingress Controller, compares it with Envoy Gateway, and provides concrete configurations, benchmark results, monitoring rules, and best‑practice recommendations for Kubernetes Ingress optimization.

EnvoyKubernetesPerformance
0 likes · 27 min read
How to Double K8s Ingress Performance: Nginx vs Envoy Gateway Tuning Guide
Ops Community
Ops Community
Apr 19, 2026 · Databases

How to Diagnose and Resolve MySQL CPU Spikes: A Complete Step‑by‑Step Guide

This guide walks you through identifying why MySQL CPU usage jumps, from confirming the MySQL process consumes CPU to checking connection counts, slow queries, lock waits, configuration settings, and business‑level traffic, and then provides short‑term mitigations and long‑term solutions such as read‑write splitting, sharding, and caching.

CPUDatabaseMySQL
0 likes · 17 min read
How to Diagnose and Resolve MySQL CPU Spikes: A Complete Step‑by‑Step Guide
Raymond Ops
Raymond Ops
Apr 18, 2026 · Operations

Rapid CPU Spike Diagnosis: Resolve High CPU Usage in Under 5 Minutes

This guide presents a step‑by‑step, standardized process for detecting, analyzing, and fixing sudden CPU usage spikes on Linux servers, covering preparation, quick identification, deep thread‑level investigation, stack and system‑call analysis, flame‑graph generation, emergency mitigation, and best‑practice recommendations.

CPULinuxPerformance
0 likes · 21 min read
Rapid CPU Spike Diagnosis: Resolve High CPU Usage in Under 5 Minutes
Ubuntu
Ubuntu
Apr 17, 2026 · Industry Insights

Linux 7.0 Unveiled: Rust Goes First-Class, AI Guidelines, and Major Performance Gains

Linux 7.0, announced on April 12, 2026, promotes Rust to a structural kernel component, introduces AI‑generated code policies, delivers sizable performance improvements across desktop, gaming, and containers, adds post‑quantum security, removes SHA‑1, expands hardware support, and powers the upcoming Ubuntu 26.04 LTS.

AILinuxPerformance
0 likes · 11 min read
Linux 7.0 Unveiled: Rust Goes First-Class, AI Guidelines, and Major Performance Gains
Raymond Ops
Raymond Ops
Apr 16, 2026 · Operations

Mastering Nginx 502/504 Errors: A Complete Troubleshooting Guide with Scripts

This comprehensive guide explains the differences between Nginx 502 and 504 errors, provides step‑by‑step troubleshooting procedures, detailed configuration examples, one‑click diagnostic scripts, real‑world case studies, best‑practice optimizations, monitoring setups, and advanced learning paths to help you quickly resolve gateway issues and improve server reliability.

502504PHP-FPM
0 likes · 26 min read
Mastering Nginx 502/504 Errors: A Complete Troubleshooting Guide with Scripts
Top Architect
Top Architect
Apr 16, 2026 · Backend Development

Which Java Backend Framework Reigns Supreme? A Data‑Driven Comparison of Spring Boot, Quarkus, Micronaut, and More

This article presents an objective, data‑backed comparison of popular Java backend frameworks—evaluating performance, ecosystem maturity, learning curve, development efficiency, and enterprise adoption—to help developers choose the most suitable technology for their specific scenarios.

Backend FrameworksJavaMicroservices
0 likes · 10 min read
Which Java Backend Framework Reigns Supreme? A Data‑Driven Comparison of Spring Boot, Quarkus, Micronaut, and More
Java Companion
Java Companion
Apr 16, 2026 · Databases

Is Running MySQL in Docker Really a Bad Idea?

This article dissects the common claim that MySQL should not be run in Docker by explaining the underlying design mismatch, measuring I/O overhead, examining persistence and resource‑isolation pitfalls, reviewing replication challenges, and presenting real‑world cases from JD and Tongcheng to show when containerization is safe and when it isn’t.

DockerMySQLPerformance
0 likes · 12 min read
Is Running MySQL in Docker Really a Bad Idea?
java1234
java1234
Apr 16, 2026 · Backend Development

Why Java Virtual Threads? Deep Dive into Loom’s Principles and Production Pitfalls

The article explains why traditional platform threads are costly, defines Java virtual threads as lightweight JVM‑managed threads that unmount on blocking, compares their performance and limits to platform threads, outlines suitable and unsuitable use cases, provides starter code and best‑practice patterns, and offers a detailed production‑ready checklist to avoid common pitfalls such as pinning, ThreadLocal misuse, and blocking I/O.

JavaPerformancePinning
0 likes · 16 min read
Why Java Virtual Threads? Deep Dive into Loom’s Principles and Production Pitfalls
Architecture Breakthrough
Architecture Breakthrough
Apr 16, 2026 · Backend Development

Mastering Asynchronous Processing: Design Principles, Patterns, and Risks

This comprehensive guide explains the purpose, core concepts, suitable scenarios, common patterns, benefits, and potential pitfalls of asynchronous processing, offering detailed design, development, review, and operational principles to help teams build reliable, high‑throughput systems.

Performanceasynchronous processingbackend architecture
0 likes · 22 min read
Mastering Asynchronous Processing: Design Principles, Patterns, and Risks
Deepin Linux
Deepin Linux
Apr 16, 2026 · Fundamentals

Why Understanding User vs. Kernel Mode Is Key to Mastering Linux

This article explains the fundamental differences between user mode and kernel mode in Linux, why the separation matters for security and stability, how mode switches occur via system calls, interrupts, and traps, and provides practical code examples and performance‑optimizing techniques such as zero‑copy and asynchronous I/O.

LinuxPerformanceProc Filesystem
0 likes · 49 min read
Why Understanding User vs. Kernel Mode Is Key to Mastering Linux
Java Architect Essentials
Java Architect Essentials
Apr 15, 2026 · Backend Development

Spring 7.0.4: Hidden Deadlock Fix and 30‑50% Startup Boost for K8s Apps

The article analyzes a nondeterministic deadlock bug in Spring 7.0.0‑7.0.3 that surfaces in Kubernetes pods, explains how Spring 7.0.4 resolves it with a revised shutdown state machine, details additional performance‑related fixes and new features, and provides practical upgrade guidance based on JDK version and deployment scenario.

BugFixJavaKubernetes
0 likes · 14 min read
Spring 7.0.4: Hidden Deadlock Fix and 30‑50% Startup Boost for K8s Apps
MaGe Linux Operations
MaGe Linux Operations
Apr 15, 2026 · Databases

Why MySQL Binary Logs Fill Up Disk Space and How to Fix It

This article explains how MySQL binary logs can rapidly consume disk space, analyzes the root causes such as log format and workload, provides step‑by‑step diagnostics, and offers practical cleanup, configuration, replication, monitoring, and recovery strategies to prevent and resolve the issue.

Binary LogMySQLPerformance
0 likes · 21 min read
Why MySQL Binary Logs Fill Up Disk Space and How to Fix It
DevOps Coach
DevOps Coach
Apr 14, 2026 · Operations

Stop Rebooting: How to Diagnose Slow Linux Servers Without Restarting

When a Linux server feels sluggish yet appears healthy, this guide walks you through systematic checks—kernel load, process inspection, and targeted monitoring—to pinpoint the root cause and resolve performance issues without resorting to an immediate reboot.

LinuxOperationsPerformance
0 likes · 11 min read
Stop Rebooting: How to Diagnose Slow Linux Servers Without Restarting
Ray's Galactic Tech
Ray's Galactic Tech
Apr 14, 2026 · Backend Development

How Go Microservices Pay a Hidden Performance Tax—and How to Eliminate It

This article examines the often‑overlooked performance “tax” in Go microservices, detailing how misuse of goroutines, channels, interfaces, object allocation, and fan‑out patterns inflates CPU, memory, and tail‑latency costs, and provides concrete engineering strategies—such as request‑level concurrency limits, bulkheads, and efficient logging—to achieve production‑grade scalability.

GCGoKubernetes
0 likes · 40 min read
How Go Microservices Pay a Hidden Performance Tax—and How to Eliminate It
JD Cloud Developers
JD Cloud Developers
Apr 14, 2026 · Mobile Development

How Taro’s Custom iOS Rendering Layer Achieves High‑Performance Cross‑Platform UI

This article details Taro’s self‑developed iOS rendering layer and TaroUI framework, explaining how a double‑thread pipeline, native‑view‑plus‑layer architecture, rich‑text engine, and extensive rendering optimizations deliver high performance, stability, and cross‑platform consistency for mobile applications.

PerformanceTaROUI framework
0 likes · 19 min read
How Taro’s Custom iOS Rendering Layer Achieves High‑Performance Cross‑Platform UI
Java Web Project
Java Web Project
Apr 14, 2026 · Backend Development

Why Seata’s Global Locks Can Kill High‑QPS Services—and What to Do Instead

The author recounts 18 months of using Seata for distributed transactions, explains its three‑role architecture and AT mode, details how global locks caused severe latency and deadlocks under load, and shows how switching to a transactional outbox pattern restored performance and eliminated the undo_log bloat.

Distributed TransactionsMicroservicesPerformance
0 likes · 8 min read
Why Seata’s Global Locks Can Kill High‑QPS Services—and What to Do Instead
Cloud Architecture
Cloud Architecture
Apr 13, 2026 · Operations

Ultimate Message Middleware Comparison: Choosing Kafka, RabbitMQ or RocketMQ

This article walks through why modern systems need a message broker, presents a four‑layer architectural view, compares Kafka, RabbitMQ and RocketMQ across design, performance, routing and transactional capabilities, and offers concrete scenario recommendations, engineering best‑practices, code samples and monitoring guidelines.

KafkaMessage QueuePerformance
0 likes · 33 min read
Ultimate Message Middleware Comparison: Choosing Kafka, RabbitMQ or RocketMQ
Big Tech Senior
Big Tech Senior
Apr 13, 2026 · Industry Insights

How Top Performers Stand Out Instantly in Big Tech Companies

The article outlines the short‑term, mid‑term, and long‑term traits that enable high‑performing engineers to be quickly identified by team leaders in large internet firms, detailing thirteen concrete habits such as result‑oriented thinking, priority management, cross‑department influence, and stress resilience.

PerformanceProductivitybig tech
0 likes · 3 min read
How Top Performers Stand Out Instantly in Big Tech Companies
Tech Ocean
Tech Ocean
Apr 13, 2026 · Operations

Why I Switched from pyenv/venv/pip to uv: 3‑Month Real‑World Review

After two years of struggling with pyenv, venv, and pip, the author adopted uv for three months and found dramatically faster installations, reliable dependency locking, and seamless cross‑platform team collaboration, prompting a decisive move away from the older tools.

Package ManagementPerformanceTool comparison
0 likes · 6 min read
Why I Switched from pyenv/venv/pip to uv: 3‑Month Real‑World Review
Baidu Geek Talk
Baidu Geek Talk
Apr 13, 2026 · Artificial Intelligence

How Baidu’s 7th‑Gen AI Confidential VM Delivers Full‑Stack Secure Compute

Baidu Cloud’s 7th‑generation AI confidential virtual machine combines Intel TDX‑based CPU trusted execution, GPU confidential computing, and DPU‑offloaded I/O to provide end‑to‑end encrypted data paths, multi‑GPU scaling, and near‑native performance for high‑sensitivity AI workloads, redefining secure cloud AI infrastructure.

AIConfidential ComputingGPU
0 likes · 15 min read
How Baidu’s 7th‑Gen AI Confidential VM Delivers Full‑Stack Secure Compute
Go Development Architecture Practice
Go Development Architecture Practice
Apr 13, 2026 · Backend Development

Why FastCache Is the Go Developer’s Secret Weapon for Ultra‑Fast, Zero‑GC Local Caching

FastCache, an open‑source Go in‑memory cache from the VictoriaMetrics team, delivers extreme speed, zero garbage‑collector pressure, and built‑in thread safety through a shard‑bucket design, while offering a five‑method API that lets developers cache massive key‑value data with minimal configuration, making it ideal for high‑concurrency services and low‑latency workloads.

FastCacheGoPerformance
0 likes · 7 min read
Why FastCache Is the Go Developer’s Secret Weapon for Ultra‑Fast, Zero‑GC Local Caching
dbaplus Community
dbaplus Community
Apr 12, 2026 · Backend Development

Can PostgreSQL Replace Redis? Performance, Cost, and Migration Insights

This article examines how PostgreSQL can take over Redis' roles—caching, pub/sub, and job queues—by leveraging unlogged tables, LISTEN/NOTIFY, and SKIP LOCKED, presenting cost savings, benchmark results, migration steps, and code examples for a practical backend replacement.

PerformancePostgreSQLRedis
0 likes · 17 min read
Can PostgreSQL Replace Redis? Performance, Cost, and Migration Insights
Big Tech Senior
Big Tech Senior
Apr 12, 2026 · Industry Insights

How to Spot Low Performers in Big Tech Companies: Common Signs and Analysis

The article outlines how team leads in large internet firms can quickly identify under‑performing employees through patterns such as lack of initiative, missing closed‑loop feedback, poor execution and time management, weak problem‑solving, ineffective communication, shirking responsibility, low stress tolerance, and resistance to learning.

LearningPerformancebig tech
0 likes · 4 min read
How to Spot Low Performers in Big Tech Companies: Common Signs and Analysis
Raymond Ops
Raymond Ops
Apr 11, 2026 · Operations

Why TCP’s Three‑Way Handshake Matters: Deep Dive into States, Tuning, and Real‑World Pitfalls

This article explains the TCP three‑way handshake in depth, covering the state machine, kernel‑level packet analysis, performance tuning, security hardening, real‑world case studies such as SYN‑Flood mitigation and TIME_WAIT overload, and provides complete C and Python examples, monitoring metrics, troubleshooting steps, and backup procedures for production environments.

LinuxPerformanceTCP
0 likes · 28 min read
Why TCP’s Three‑Way Handshake Matters: Deep Dive into States, Tuning, and Real‑World Pitfalls
IT Services Circle
IT Services Circle
Apr 11, 2026 · Databases

Why Sharding Isn’t Dead: Modern Alternatives and When to Use Them

The article revisits the rise and fall of database sharding, explains why it became problematic, and evaluates newer cloud‑native, distributed‑SQL, and serverless databases as modern replacements, offering a practical four‑step guide to help engineers choose the right solution for their workload and team.

Database ScalingDistributed SQLOperations
0 likes · 23 min read
Why Sharding Isn’t Dead: Modern Alternatives and When to Use Them
Java Architect Essentials
Java Architect Essentials
Apr 11, 2026 · Backend Development

Why Java Reflection Slows You Down and How Dynamic Proxies Can Speed It Up 8×

This article analyzes why Java reflection incurs high latency due to repeated method lookups and security checks, presents benchmark data showing up to 500‑fold slowdown, and demonstrates how caching Method objects with JDK dynamic proxies can reduce overhead by up to eight times while offering practical code examples and usage tips.

Dynamic ProxyJDKPerformance
0 likes · 6 min read
Why Java Reflection Slows You Down and How Dynamic Proxies Can Speed It Up 8×
Ubuntu
Ubuntu
Apr 11, 2026 · Operations

Ubuntu 26.04 Hits Kernel Freeze: Linux 7.0 Arrives with 5 Key Highlights

Ubuntu 26.04 LTS entered kernel freeze on April 9, bringing the newly released Linux 7.0 kernel with Rust integrated into the core, a 40% graphics boost, 25% data‑center performance gains, full support for the latest AMD and Intel hardware, and extensive security enhancements.

Data CenterLinux 7.0Performance
0 likes · 8 min read
Ubuntu 26.04 Hits Kernel Freeze: Linux 7.0 Arrives with 5 Key Highlights
Full-Stack Cultivation Path
Full-Stack Cultivation Path
Apr 10, 2026 · Backend Development

How SideX Replaces VS Code’s Electron Core with Tauri + Rust to Shrink Install Size to 16 MB

SideX rebuilds the full VS Code architecture by swapping Electron/Chromium for Tauri’s system WebView and rewriting the Node.js backend in Rust, cutting the installer from 797 MB to 16 MB (a 96% reduction), while delivering comparable editor, terminal, Git, and search features and demonstrating that Rust + Tauri can power complex desktop applications.

Desktop applicationElectronPerformance
0 likes · 7 min read
How SideX Replaces VS Code’s Electron Core with Tauri + Rust to Shrink Install Size to 16 MB
Ubuntu
Ubuntu
Apr 8, 2026 · Industry Insights

Linux 7.0 Kernel Launch Brings Rust Support and Up to 40% Graphics Boost

Linux 7.0, released this weekend, introduces Rust as a second official kernel language, delivers up to 40% graphics performance gains, 25% data‑center improvements, and full support for next‑generation processors such as AMD Zen 6, Intel Nova Lake, and Qualcomm Snapdragon X Elite, while Ubuntu 26.04 LTS will ship it by April 23.

HardwarePerformanceRust
0 likes · 8 min read
Linux 7.0 Kernel Launch Brings Rust Support and Up to 40% Graphics Boost
Machine Heart
Machine Heart
Apr 8, 2026 · Cloud Computing

What’s the Game‑Changing Move for AI Infra in the Era of the “Lobster” Craze?

The article analyzes the rapid rise of OpenClaw‑style AI agents, the security and resource challenges they introduce, and how Tencent Cloud’s Agent Runtime provides a lightweight, fast‑starting, highly concurrent, sandboxed infrastructure that decouples state from compute, supports checkpointing, and enables secure, scalable deployment for enterprise AI workloads.

AI AgentsAgent InfrastructurePerformance
0 likes · 15 min read
What’s the Game‑Changing Move for AI Infra in the Era of the “Lobster” Craze?
Golang Shines
Golang Shines
Apr 8, 2026 · Backend Development

Deep Dive into FastCache: High‑Performance Local Cache for Go

FastCache is an open‑source Go local‑cache library that delivers extreme speed, zero GC pressure, thread safety, and a five‑method API, making it ideal for high‑concurrency services while providing clear usage guidelines, pitfalls, and suitable scenarios.

FastCacheGoPerformance
0 likes · 6 min read
Deep Dive into FastCache: High‑Performance Local Cache for Go
Data STUDIO
Data STUDIO
Apr 8, 2026 · Backend Development

11 Backend Languages Shaping 2026: Pros, Cons, and Ideal Use Cases

The article analyzes the top 11 backend programming languages for 2026, detailing each language's strengths, drawbacks, typical users, and provides a four‑question framework to help teams choose the most suitable language for their projects.

Language SelectionPerformanceProgramming Languages
0 likes · 12 min read
11 Backend Languages Shaping 2026: Pros, Cons, and Ideal Use Cases
Three Knives
Three Knives
Apr 7, 2026 · Backend Development

Feat 2.0.0 Released: Apache 2.0 License Upgrade Opens Doors for Enterprise Use

Feat 2.0.0 launches with an Apache 2.0 license, delivering extreme performance via smart‑socket, full HTTP/1.x/2.0, WebSocket and SSE support, lightweight core, cloud‑native features, built‑in AI agents, and seamless SpringBoot migration, while removing legal barriers for commercial adoption.

AI IntegrationApache LicenseJava
0 likes · 12 min read
Feat 2.0.0 Released: Apache 2.0 License Upgrade Opens Doors for Enterprise Use
Deepin Linux
Deepin Linux
Apr 7, 2026 · Fundamentals

Why io_uring Is the Game‑Changer for Linux Asynchronous I/O (And How to Master It)

This article provides a comprehensive, step‑by‑step analysis of Linux's io_uring, covering its architecture, design principles, workflow, performance advantages over traditional models like epoll, practical C code examples, optimization techniques, real‑world use cases, and the challenges developers may face when adopting it.

C++LinuxPerformance
0 likes · 52 min read
Why io_uring Is the Game‑Changer for Linux Asynchronous I/O (And How to Master It)
Cloud Architecture
Cloud Architecture
Apr 6, 2026 · Backend Development

Spring Boot GeoJSON Optimization: From Transport Compression to Production‑Ready High‑Concurrency Architecture

This article presents a comprehensive, production‑grade guide for optimizing GeoJSON in Spring Boot services, covering data‑level reductions, binary encoding, compression strategies, architectural separation of external and internal traffic, caching layers, thread‑model tuning, observability, and a real‑world case study that cuts response times from 800 ms to 90 ms.

GeoJSONMicroservicesPerformance
0 likes · 40 min read
Spring Boot GeoJSON Optimization: From Transport Compression to Production‑Ready High‑Concurrency Architecture
Senior Tony
Senior Tony
Apr 5, 2026 · Interview Experience

How to Ace AI Coding Interview Questions with a Structured Three‑Problem Framework

The article outlines a practical, three‑category approach to answering the most common AI‑coding interview question, warning against vague praise and detailing how to handle engineering gaps, performance and concurrency pitfalls, and safe modifications of legacy code using structured prompts and thorough code review.

AI codingPerformanceSoftware engineering
0 likes · 5 min read
How to Ace AI Coding Interview Questions with a Structured Three‑Problem Framework
Smart Era Software Development
Smart Era Software Development
Apr 3, 2026 · Artificial Intelligence

Claude Code Deep Dive: Engineering an AI Programming Assistant and Agent Design Best Practices

This article provides a comprehensive technical analysis of Claude Code, explaining how it transforms AI programming assistants from simple code‑completion tools into autonomous agents that can read/write files, execute commands, manage context, and coordinate multiple agents, while detailing its eight core design principles, layered architecture, tool system, context engineering, state management, security model, extensibility mechanisms, and performance optimizations.

AI AgentAgent EngineeringClaude Code
0 likes · 26 min read
Claude Code Deep Dive: Engineering an AI Programming Assistant and Agent Design Best Practices
Java Tech Workshop
Java Tech Workshop
Apr 3, 2026 · Backend Development

Best Practices for Configuring HikariCP in Spring Boot

This article explains why HikariCP is the default Spring Boot connection pool, details the required dependencies, walks through essential configuration parameters, shows how to use HikariTemplate, monitor pool metrics, avoid common pitfalls, and compares HikariCP with other popular pools.

ConfigurationHikariCPJDBC
0 likes · 6 min read
Best Practices for Configuring HikariCP in Spring Boot
MaGe Linux Operations
MaGe Linux Operations
Apr 2, 2026 · Databases

Mastering MySQL 9.0 Replication: Deep Dive into GTID, Semi‑Sync, and Troubleshooting

This comprehensive guide explores MySQL 9.0's replication architecture, covering core principles, GTID and semi‑synchronous modes, various replication topologies, detailed troubleshooting steps, monitoring scripts, and best‑practice configurations, providing hands‑on examples and scripts to help engineers build and maintain robust, high‑availability database systems.

GTIDMySQLPerformance
0 likes · 34 min read
Mastering MySQL 9.0 Replication: Deep Dive into GTID, Semi‑Sync, and Troubleshooting
Tech Musings
Tech Musings
Apr 2, 2026 · Operations

Did You Know Nginx Now Enables HTTP/1.1 Keep‑Alive by Default?

The article reveals that recent Nginx releases have made HTTP/1.1 keep‑alive the default configuration, eliminating the need for explicit proxy_http_version and Connection header settings, and explains how this reduces handshakes, lowers latency, and improves first‑byte response times for typical web applications.

Keep-AliveOperationsPerformance
0 likes · 2 min read
Did You Know Nginx Now Enables HTTP/1.1 Keep‑Alive by Default?
Java Architect Essentials
Java Architect Essentials
Apr 2, 2026 · Backend Development

Why Micronaut Beats Spring Boot: Faster Startup, Lower Memory, Cloud‑Native Edge

This article analyzes Micronaut's design philosophy, performance advantages in startup time and memory usage, and its built‑in cloud‑native features—such as distributed configuration, service discovery, client load balancing, tracing, and serverless support—while providing step‑by‑step installation and code examples for Java developers.

Framework ComparisonJavaMicronaut
0 likes · 11 min read
Why Micronaut Beats Spring Boot: Faster Startup, Lower Memory, Cloud‑Native Edge
DeepHub IMBA
DeepHub IMBA
Apr 1, 2026 · Fundamentals

10 Overlooked Pandas Vectorized Tricks That Boost Performance

The article presents ten built‑in Pandas vectorized operations—such as np.select, assign, cut/qcut, melt/pivot_table, describe, query, transform, to_datetime, explode, and string accessor methods—showing concise one‑liners, their verbose equivalents, and the typical speed gains they deliver on large DataFrames.

Data manipulationNumPyPandas
0 likes · 12 min read
10 Overlooked Pandas Vectorized Tricks That Boost Performance
ShiZhen AI
ShiZhen AI
Apr 1, 2026 · Industry Insights

Why Is the AI Era Embracing Rust? A Calm Analyst’s Perspective

The article analyzes why Rust is rapidly gaining traction in the AI era, highlighting its dramatic performance gains, built‑in memory safety, AI‑driven code translation, industry‑wide adoption, and the accompanying risks such as steep learning curves and ecosystem gaps.

AIPerformanceRust
0 likes · 13 min read
Why Is the AI Era Embracing Rust? A Calm Analyst’s Perspective
MaGe Linux Operations
MaGe Linux Operations
Apr 1, 2026 · Databases

Master PostgreSQL 17 Locks: From Fundamentals to Advanced Monitoring & Optimization

This comprehensive guide explores PostgreSQL 17's lock mechanisms, covering lock classifications, table‑ and row‑level lock behavior, MVCC interaction, common pitfalls such as deadlocks and lock contention, and provides practical SQL queries, Bash monitoring scripts, advisory‑lock techniques, and best‑practice recommendations for performance tuning and reliable production deployment.

AdvisoryLocksDeadlockLocks
0 likes · 36 min read
Master PostgreSQL 17 Locks: From Fundamentals to Advanced Monitoring & Optimization
AI Insight Log
AI Insight Log
Mar 30, 2026 · Frontend Development

How Pure Math Eliminates DOM Layout Thrashing and Solves AI UI Lag

Pretext, a TypeScript library by React core contributor Cheng Lou, replaces costly DOM‑based text measurement with pure‑math calculations, cutting layout reflows from hundreds to zero and reducing measurement time from 30 ms to 0.05 ms, enabling precise UI layouts for AI‑driven interfaces.

AI UIPerformancePretext
0 likes · 7 min read
How Pure Math Eliminates DOM Layout Thrashing and Solves AI UI Lag
Alibaba Cloud Native
Alibaba Cloud Native
Mar 30, 2026 · Industry Insights

How Haier’s AIoT Platform Scaled to Billions of Messages with Kafka Serverless on Alibaba Cloud

The article details how Haier Smart Home’s AIoT platform tackled massive device messaging demands by migrating its self‑built Kafka clusters to Alibaba Cloud’s Kafka Serverless, outlining the technical challenges, step‑by‑step migration plan, custom performance tuning, risk‑co‑governance, and the resulting improvements in stability, throughput, and operational efficiency.

AIoTAlibaba CloudKafka
0 likes · 11 min read
How Haier’s AIoT Platform Scaled to Billions of Messages with Kafka Serverless on Alibaba Cloud
TonyBai
TonyBai
Mar 30, 2026 · Backend Development

How Request Hedging Cuts Go HTTP Client P99 Latency by 74%

The article explains why tail latency hurts microservices, why simple retries fail, and how implementing Google’s request‑hedging technique in Go’s http.Client can slash P99 latency by about 64% while incurring only a modest P50 increase.

GoHTTP clientMicroservices
0 likes · 17 min read
How Request Hedging Cuts Go HTTP Client P99 Latency by 74%
Ubuntu
Ubuntu
Mar 29, 2026 · Industry Insights

Wine 11.0 Release Delivers 678% Performance Boost for Linux Gaming

Wine 11.0, released on January 13 2026, introduces kernel‑level NTSYNC synchronization, full WoW64 support, a mature Wayland driver and Vulkan 1.4 extensions, delivering up to a 678% FPS increase in games like Dirt 3 while providing detailed installation and configuration guidance for Linux users.

GamingLinuxNTSYNC
0 likes · 18 min read
Wine 11.0 Release Delivers 678% Performance Boost for Linux Gaming
Java Architect Handbook
Java Architect Handbook
Mar 29, 2026 · Industry Insights

Which Java Backend Framework Reigns Supreme? A Data‑Driven Ranking

This article evaluates major Java backend frameworks using objective dimensions such as performance, ecosystem maturity, learning curve, development efficiency, enterprise adoption and innovation, categorizing them into five tiers and providing concrete data like startup time, memory usage and GitHub popularity to guide technology selection.

Framework ComparisonJavaMicroservices
0 likes · 11 min read
Which Java Backend Framework Reigns Supreme? A Data‑Driven Ranking
Ubuntu
Ubuntu
Mar 28, 2026 · Operations

VSCode 1.112 Deep Dive: 5 Efficiency Boosts for Linux Developers

VSCode 1.112 introduces native Wayland support, cuts memory usage by up to 40%, embeds AI‑assisted coding, speeds up remote SSH development by three times, and upgrades Dev Container debugging, with detailed benchmarks, configuration steps, known issues, and user feedback for Linux developers.

AI codingDev ContainersLinux
0 likes · 11 min read
VSCode 1.112 Deep Dive: 5 Efficiency Boosts for Linux Developers
Top Architect
Top Architect
Mar 27, 2026 · Backend Development

Why FastExcel Is the Next‑Gen High‑Performance Java Excel Library

FastExcel, created after Alibaba stopped updating EasyExcel, offers seamless EasyExcel compatibility, dramatically lower memory usage, and high‑speed read/write for massive Excel files, while being free under the MIT license and backed by a thriving open‑source community that also fuels the AI‑driven database tool Chat2DB.

Chat2DBEasyExcelExcel
0 likes · 19 min read
Why FastExcel Is the Next‑Gen High‑Performance Java Excel Library
Cloud Architecture
Cloud Architecture
Mar 27, 2026 · Backend Development

Spring Boot 3 + Redis Multi-Level Cache: From Single-Node to Production Hotspot Management

This article presents a production-ready multi-level caching architecture for Spring Boot 3 using Caffeine as L1, Redis as L2, and a database as L3, detailing design goals, hotspot mitigation, consistency handling, failure protection, implementation code, monitoring, and performance evaluation for high-concurrency e-commerce scenarios.

Cache invalidationCaffeineHotspot Management
0 likes · 36 min read
Spring Boot 3 + Redis Multi-Level Cache: From Single-Node to Production Hotspot Management
Ray's Galactic Tech
Ray's Galactic Tech
Mar 27, 2026 · Artificial Intelligence

Choosing Between LangChain4j and Spring AI: Which Java AI Framework Wins in Production?

This article provides a deep, production‑grade comparison of LangChain4j and Spring AI, examining their architectural philosophies, engineering governance, high‑concurrency design, code examples, and real‑world scenarios to help Java teams decide which framework best fits their AI system boundaries, team capabilities, and long‑term evolution goals.

Java AILangChain4jPerformance
0 likes · 29 min read
Choosing Between LangChain4j and Spring AI: Which Java AI Framework Wins in Production?
Go Development Architecture Practice
Go Development Architecture Practice
Mar 27, 2026 · Backend Development

Exploring Gin 1.12: BSON Support, Enhanced Context, Flexible Binding, and Protobuf Negotiation

The article walks through Gin 1.12's new features—including native BSON handling for MongoDB, type‑safe context error methods, custom binding for dates and enums, raw‑path routing, colored latency logs, and automatic Protobuf/JSON negotiation—showing practical code examples and upgrade recommendations for microservice development.

BSONGinGo
0 likes · 10 min read
Exploring Gin 1.12: BSON Support, Enhanced Context, Flexible Binding, and Protobuf Negotiation
SuanNi
SuanNi
Mar 26, 2026 · Artificial Intelligence

TurboQuant: Google’s 6× KV Cache Compression With Zero Accuracy Loss

TurboQuant, a new technique from Google Research, dramatically compresses key‑value caches by up to six times without precision loss, using PolarQuant and QJL algorithms to transform vectors into polar coordinates and apply quantized Johnson‑Lindenstrauss transforms, thereby boosting inference speed and enabling longer context handling for large language models.

AI compressionKV cachePerformance
0 likes · 13 min read
TurboQuant: Google’s 6× KV Cache Compression With Zero Accuracy Loss