Tagged articles
5000 articles
Page 3 of 50
IT Services Circle
IT Services Circle
Feb 21, 2026 · Databases

10 MySQL Advanced Techniques to Supercharge Performance

This article presents ten practical MySQL advanced tricks—including execution‑plan analysis, sophisticated indexing, window functions, CTEs, JSON handling, partitioning, join optimizations, user variables, online DDL, and generated columns—to help developers tackle high‑concurrency, large‑scale workloads and dramatically boost database performance.

Advanced TechniquesDatabase OptimizationPerformance
0 likes · 17 min read
10 MySQL Advanced Techniques to Supercharge Performance
Data STUDIO
Data STUDIO
Feb 21, 2026 · Big Data

Boost Python Performance Up to 50× Without Changing Your Code

Python’s reputation for slowness can be overcome by selecting the right tools—Numba, PyPy, CuPy, JAX, Ray, Joblib, async I/O, memory profilers, and big‑data frameworks—delivering speedups from 6× to over 50× with minimal or no code modifications.

AsyncGPUPerformance
0 likes · 22 min read
Boost Python Performance Up to 50× Without Changing Your Code
Code Wrench
Code Wrench
Feb 21, 2026 · Fundamentals

What’s New in Go 1.26? Deep Dive into Arena Memory, Generics, and Native HTTP/3

The article provides a comprehensive analysis of Go 1.26’s major enhancements—including stable Arena memory management, expanded generics in the standard library, native HTTP/3 support, integrated security checks, performance benchmarks, and practical upgrade recommendations for production environments.

ArenaGenericsGo
0 likes · 9 min read
What’s New in Go 1.26? Deep Dive into Arena Memory, Generics, and Native HTTP/3
IT Services Circle
IT Services Circle
Feb 20, 2026 · Backend Development

Go 1.26 Highlights: New new(expr) Syntax, Generic Self‑Reference, Compiler Optimizations & Experimental Features

The article provides a concise walkthrough of Go 1.26’s most impactful changes—including a streamlined new(expr) syntax for pointers, self‑referencing generics, deeper compiler escape analysis, explicit inline directives, experimental SIMD and secret‑handling packages, and a goroutine‑leak profiling tool—illustrated with ready‑to‑run code snippets and practical tips for immediate adoption.

Compiler OptimizationGenericsGo
0 likes · 8 min read
Go 1.26 Highlights: New new(expr) Syntax, Generic Self‑Reference, Compiler Optimizations & Experimental Features
DevOps Coach
DevOps Coach
Feb 19, 2026 · Backend Development

Why Go’s JSON v2 Is Worth the Wait: Deep Dive into Features, Performance, and Roadmap

The article examines Go 1.26’s release, explains why the experimental encoding/json/v2 package remains hidden, details its architectural redesign, key new features, performance gains, critical blockers such as a memory‑regression issue, and outlines the realistic timeline for its stable inclusion in Go 1.27.

Backward CompatibilityJSONPerformance
0 likes · 15 min read
Why Go’s JSON v2 Is Worth the Wait: Deep Dive into Features, Performance, and Roadmap
Code Mala Tang
Code Mala Tang
Feb 19, 2026 · Frontend Development

When AI Becomes a Junior Engineer: Real Front‑End Gains and Limits

AI is not the future of engineering but a tireless junior engineer that can speed up repetitive tasks, mechanical refactoring, and test scaffolding, while still failing at architectural decisions, performance reasoning, and async concurrency, so senior developers must guide and verify its output.

AIFrontendPerformance
0 likes · 10 min read
When AI Becomes a Junior Engineer: Real Front‑End Gains and Limits
Code Wrench
Code Wrench
Feb 19, 2026 · Backend Development

5 Go Techniques to Write Production‑Ready, Elegant Code

This article presents five practical Go techniques—using context for graceful cancellation, enriching errors with fmt.Errorf, leveraging sync.Pool to reduce GC pressure, employing pprof for performance profiling, and designing testable code with dependency injection—each illustrated with real‑world code examples and common pitfalls.

Best PracticesGoPerformance
0 likes · 7 min read
5 Go Techniques to Write Production‑Ready, Elegant Code
Linux Tech Enthusiast
Linux Tech Enthusiast
Feb 18, 2026 · Operations

Top Nginx Performance Tweaks: Worker Processes and CPU Affinity Explained

This guide shows how to edit nginx.conf to adjust worker_processes based on CPU cores, explains when I/O blocking requires extra workers, and demonstrates Linux‑only worker_cpu_affinity settings with concrete examples for 2, 4, and 8‑core systems, including the exact commands to apply and reload the configuration.

CPU affinityPerformanceconfiguration
0 likes · 4 min read
Top Nginx Performance Tweaks: Worker Processes and CPU Affinity Explained
Tech Musings
Tech Musings
Feb 17, 2026 · Backend Development

Why Go’s Empty Struct Takes Zero Bytes and How to Leverage It

This article explains the zero‑byte nature of Go’s empty struct, how the runtime treats zero‑size allocations, why multiple instances share the same address, and demonstrates practical patterns such as set maps, signal channels, and worker coordination that improve memory efficiency and performance.

Performancechannel signalingempty struct
0 likes · 11 min read
Why Go’s Empty Struct Takes Zero Bytes and How to Leverage It
AI Insight Log
AI Insight Log
Feb 14, 2026 · Artificial Intelligence

Why Claude Code’s Context Caching Suddenly Fails and Costs Skyrocket

After Claude Code was updated to version 2.1.37, developers observed a sharp drop in context‑caching hit rates, causing unexpected cost spikes and slower responses, and a community investigation revealed that random headers and spaces injected by the tool break the model’s cache matching.

APIAnthropicBug Analysis
0 likes · 6 min read
Why Claude Code’s Context Caching Suddenly Fails and Costs Skyrocket
Mike Chen's Internet Architecture
Mike Chen's Internet Architecture
Feb 13, 2026 · Backend Development

How to Calculate and Tune Nginx’s Maximum Concurrent Connections

This article explains how Nginx’s maximum concurrent connections are determined by worker_processes and worker_connections, provides a sample configuration, discusses OS‑level limits such as file descriptors and kernel parameters, and offers practical tuning steps to scale Nginx to tens of thousands of connections.

Performanceconfigurationnginx
0 likes · 4 min read
How to Calculate and Tune Nginx’s Maximum Concurrent Connections
Radish, Keep Going!
Radish, Keep Going!
Feb 12, 2026 · Backend Development

Why Go’s JSON v2 Is a Game-Changer and When It Will Arrive

The article examines Go 1.26’s release, the missing encoding/json/v2 package, its architectural split, new struct tags, performance gains, critical memory‑allocation issues, the four blockers delaying stable adoption, and the projected timeline for JSON v2 to become the default in Go 1.27.

GoGo1.26Performance
0 likes · 15 min read
Why Go’s JSON v2 Is a Game-Changer and When It Will Arrive
Efficient Ops
Efficient Ops
Feb 11, 2026 · Databases

How Merged Seckill Boosts MySQL Write Throughput by 5× for High‑Concurrency Flash Sales

The article explains a MySQL kernel‑level merged seckill optimization that replaces traditional queue‑based flash‑sale handling, achieving up to 5‑fold throughput gains (up to 1.5 W/s) without requiring SQL changes, detailing background, performance results, bottleneck analysis, design of cache visibility, leader‑follower coordination, row‑lock refinements, binlog parallelism, and crash‑recovery considerations.

PerformanceSeckilldatabase-optimization
0 likes · 12 min read
How Merged Seckill Boosts MySQL Write Throughput by 5× for High‑Concurrency Flash Sales
dbaplus Community
dbaplus Community
Feb 10, 2026 · Backend Development

How to Eliminate Unstable Pagination Anchors and Data Duplication in Backend Systems

This article explains why offset‑based pagination can cause duplicate or missing records in backend list queries, illustrates real‑world cases, analyzes the root causes, and presents three practical solutions—including cursor pagination, timestamp windows, and Elasticsearch search_after—along with their trade‑offs and implementation details.

CursorElasticsearchPerformance
0 likes · 12 min read
How to Eliminate Unstable Pagination Anchors and Data Duplication in Backend Systems
Woodpecker Software Testing
Woodpecker Software Testing
Feb 10, 2026 · Industry Insights

Tackling IoT Device Integration Testing: Key Challenges and Practical Solutions

The article systematically examines the major hurdles of IoT multi‑device integration testing—such as protocol heterogeneity, network instability, and scenario complexity—and presents a layered testing framework, automation tools, data‑driven techniques, and best‑practice recommendations to help test teams improve efficiency and reliability.

Device IntegrationIoTPerformance
0 likes · 6 min read
Tackling IoT Device Integration Testing: Key Challenges and Practical Solutions
java1234
java1234
Feb 10, 2026 · Fundamentals

Understanding Java Reflection: Core Concepts, Use Cases, and Trade‑offs

This article explains Java's reflection mechanism, covering its main uses such as dynamic class loading, handling unknown types, accessing private members, and framework development, then walks through basic steps, a complete code example, and discusses its advantages and drawbacks.

Dynamic LoadingJavaPerformance
0 likes · 6 min read
Understanding Java Reflection: Core Concepts, Use Cases, and Trade‑offs
IT Services Circle
IT Services Circle
Feb 9, 2026 · Fundamentals

Why Misusing std::shared_ptr Slows Your C++ Code and How to Fix It

This article explores common pitfalls when using std::shared_ptr in C++, including unnecessary copying, extra heap allocations, cyclic references, and subtle memory retention with make_shared, provides benchmark comparisons, and offers practical guidelines such as preferring const‑reference passing, using std::make_shared, and employing weak_ptr to break cycles.

CPerformancememory-management
0 likes · 10 min read
Why Misusing std::shared_ptr Slows Your C++ Code and How to Fix It
Java Architect Handbook
Java Architect Handbook
Feb 8, 2026 · Backend Development

How to Resolve RocketMQ Message Backlog: Diagnosis, Immediate Fixes, and Long‑Term Prevention

This article breaks down the interview focus points, core solution framework, underlying RocketMQ mechanisms, step‑by‑step remediation actions, common pitfalls, and a concluding strategy for handling message backlog through emergency scaling, consumer optimization, degradation, dead‑letter handling, and proactive capacity planning.

JavaMessage QueueMonitoring
0 likes · 9 min read
How to Resolve RocketMQ Message Backlog: Diagnosis, Immediate Fixes, and Long‑Term Prevention
SpringMeng
SpringMeng
Feb 8, 2026 · Backend Development

Why Companies Still Stick with JDK 8 Even Though JDK 25 Is Released

The article analyzes why many enterprises continue using JDK 8 despite newer releases like JDK 25, examining compatibility issues, stability, learning costs, third‑party library support, performance trade‑offs, commercial licensing, and toolchain considerations while offering migration guidance.

JDKJavaLTS
0 likes · 22 min read
Why Companies Still Stick with JDK 8 Even Though JDK 25 Is Released
IT Services Circle
IT Services Circle
Feb 7, 2026 · Game Development

Why Windows 11 KB5074109 Breaks Gaming and How to Fix It

A mandatory Windows 11 KB5074109 update released in January 2026 caused severe performance drops, visual glitches, and black screens for many NVIDIA GeForce users, and the only reliable remedy so far is to uninstall the update or apply a supplemental KB5074105 patch.

GamingKB5074109NVIDIA
0 likes · 4 min read
Why Windows 11 KB5074109 Breaks Gaming and How to Fix It
Shuge Unlimited
Shuge Unlimited
Feb 5, 2026 · Frontend Development

How vercel-react-best-practices Reduces React First‑Paint from 3.2s to 1.8s

This article analyzes the Vercel‑provided vercel-react-best-practices skill—installed weekly by 74.5K users—detailing its 57 optimization rules across eight priority categories, and demonstrates through real‑world case studies how it cuts first‑paint time from 3.2 seconds to 1.8 seconds, shrinks JavaScript bundle size, and improves conversion rates, while also covering installation, configuration, and advanced usage tips.

Bundle AnalyzerCode SplittingNext.js
0 likes · 21 min read
How vercel-react-best-practices Reduces React First‑Paint from 3.2s to 1.8s
Code Wrench
Code Wrench
Feb 5, 2026 · Backend Development

Why Your Go Code Crashes in Production: 5 Real Memory‑Model Pitfalls and Fixes

This article examines five real‑world Go concurrency bugs—ranging from unprotected flags and double‑checked locks to map races, loop‑variable capture, and slice appends—explains the underlying Go memory‑model and happens‑before concepts, and provides correct synchronization patterns such as channels, sync.Once, mutexes, sync.Map, and atomic.Value to write stable high‑concurrency services.

GoMemory ModelPerformance
0 likes · 23 min read
Why Your Go Code Crashes in Production: 5 Real Memory‑Model Pitfalls and Fixes
Selected Java Interview Questions
Selected Java Interview Questions
Feb 4, 2026 · Databases

How to Handle Pagination Across Sharded Databases Without Performance Pitfalls

This article explains why pagination only becomes complex when queries span multiple database shards, compares three mainstream solutions—including middleware, open‑source frameworks, and business compromises—highlights the pitfalls of global search for deep pages, and recommends sequential paging based on the previous page’s max ID, with interview‑ready STAR guidance.

InterviewPerformanceSQL
0 likes · 7 min read
How to Handle Pagination Across Sharded Databases Without Performance Pitfalls
Deepin Linux
Deepin Linux
Feb 4, 2026 · Fundamentals

How Zero‑Copy and DMA Supercharge Data Transfer Performance

This article explains the fundamentals of zero‑copy, DMA, PageCache and RDMA, compares them with traditional I/O, describes Linux implementations such as sendfile, mmap+write, splice and Java NIO APIs, and shows practical use‑cases that dramatically reduce CPU load and latency in high‑throughput networking and file handling.

DMAJava NIOLinux
0 likes · 40 min read
How Zero‑Copy and DMA Supercharge Data Transfer Performance
Raymond Ops
Raymond Ops
Feb 3, 2026 · Operations

Zabbix vs Prometheus: Which Monitoring System Wins in 2024?

This guide compares Zabbix and Prometheus across architecture, performance, features, operational costs, and real‑world scenarios, providing a detailed selection roadmap for traditional IT, cloud‑native microservices, and hybrid environments while offering optimization tips and future trends.

PerformancePrometheuscloud-native
0 likes · 16 min read
Zabbix vs Prometheus: Which Monitoring System Wins in 2024?
Tech Musings
Tech Musings
Feb 3, 2026 · Backend Development

Why Go’s range Loop Can Slow You Down with Large Structs—and How to Fix It

In Go, using a range loop on slices of large structs implicitly copies each element, leading to significant performance loss, and modifying the loop variable does not affect the original slice; this article explains the copying behavior, benchmarks three loop styles, and offers practical guidelines to write fast and correct code.

Performancebenchmarkrange
0 likes · 9 min read
Why Go’s range Loop Can Slow You Down with Large Structs—and How to Fix It
java1234
java1234
Feb 3, 2026 · Backend Development

Boost API Latency 10× with Spring Boot 3 and a Local Cache Pyramid

The article demonstrates how to achieve a ten‑fold reduction in API response time by building a three‑level cache pyramid (Caffeine L1, Redis L2, DB L3) in Spring Boot 3, covering dependencies, configuration, core template code, warm‑up, monitoring, load‑test results and common high‑concurrency pitfalls.

CacheCaffeineJava
0 likes · 8 min read
Boost API Latency 10× with Spring Boot 3 and a Local Cache Pyramid
Top Architect
Top Architect
Feb 1, 2026 · Backend Development

10 Proven Techniques to Supercharge API Performance in Java Backends

This article presents a comprehensive, step‑by‑step guide to optimizing API latency in Java backend services, covering batch processing, asynchronous execution, caching, preprocessing, pooling, parallelization, indexing, transaction management, pagination, SQL tuning, and lock granularity, complete with code examples and diagrams.

APIOptimizationPerformance
0 likes · 13 min read
10 Proven Techniques to Supercharge API Performance in Java Backends
Ray's Galactic Tech
Ray's Galactic Tech
Jan 31, 2026 · Databases

Master Elasticsearch Performance: Practical Production‑Level Optimization Guide

This guide presents a production‑grade, step‑by‑step approach to boost Elasticsearch performance, covering advanced index design, mapping best practices, query and aggregation tuning, JVM and cluster settings, bulk write optimization, monitoring, and real‑world log‑system scenarios with concrete code examples and configuration snippets.

JVMMonitoringOptimization
0 likes · 9 min read
Master Elasticsearch Performance: Practical Production‑Level Optimization Guide
Code Wrench
Code Wrench
Jan 30, 2026 · Fundamentals

Master Go Reflection: Harness the Power and Avoid the Pitfalls

This article explains Go's reflection mechanism, presents Rob Pike's three core rules, shows practical code examples, highlights performance and safety trade‑offs, and provides concrete best‑practice guidelines to help developers decide when and how to use reflection safely.

Best PracticesDebuggingGo
0 likes · 16 min read
Master Go Reflection: Harness the Power and Avoid the Pitfalls
Su San Talks Tech
Su San Talks Tech
Jan 27, 2026 · Fundamentals

What’s New in IntelliJ IDEA 2025.3? Smaller Unified Edition and Full Spring Boot 4 Support

IntelliJ IDEA 2025.3 introduces a unified, 30% smaller edition, quieter development workflow, full Spring Framework 7 and Spring Boot 4 support, enhanced language features for Java, Kotlin and Scala, improved Git integration, terminal and build‑tool optimizations, plus performance upgrades for large web projects.

FrontendIDEIntelliJ IDEA
0 likes · 6 min read
What’s New in IntelliJ IDEA 2025.3? Smaller Unified Edition and Full Spring Boot 4 Support
Big Data Tech Team
Big Data Tech Team
Jan 26, 2026 · Big Data

Master DWD, DWS, and Wide‑Table Modeling for Scalable Data Warehouses

This guide explains the DWD (detail) and DWS (summary) layered modeling approach combined with wide‑table driving, covering model positioning, design principles, concrete schema examples, implementation techniques, performance tips, and common pitfalls to help build clean, reusable, high‑performance enterprise data warehouses.

DWDDWSData Warehouse
0 likes · 9 min read
Master DWD, DWS, and Wide‑Table Modeling for Scalable Data Warehouses
Alibaba Cloud Observability
Alibaba Cloud Observability
Jan 26, 2026 · Cloud Native

Solving Edge Observability: How LoongCollector Ensures Reliable Data Collection

This article explains the three major challenges of collecting observability data on edge devices—unstable networks, reliable delivery, and bandwidth limits—and shows how LoongCollector’s persistent‑asynchronous architecture, smart back‑pressure, and configurable flow control provide a low‑resource, high‑reliability solution with real‑world performance results.

ObservabilityPerformancecloud-native
0 likes · 14 min read
Solving Edge Observability: How LoongCollector Ensures Reliable Data Collection
IT Services Circle
IT Services Circle
Jan 26, 2026 · Frontend Development

Why oxfmt and oxlint Are Redefining Frontend Toolchains with 30‑50× Speed Gains

The article examines the rapid adoption of oxfmt and oxlint—Rust‑based formatter and linter from VoidZero—highlighting their massive npm download growth, performance advantages over Prettier and ESLint, key technical features, and why their speed improvements make migration inevitable for modern front‑end projects.

FrontendPerformanceRust
0 likes · 5 min read
Why oxfmt and oxlint Are Redefining Frontend Toolchains with 30‑50× Speed Gains
Architect Chen
Architect Chen
Jan 25, 2026 · Operations

How to Boost Nginx Concurrency to 100k+ Connections: Practical Tuning Guide

This guide explains how to maximize Nginx's concurrent handling capacity by configuring worker_processes, worker_connections, event settings, system limits, and I/O optimizations, providing concrete code snippets and kernel parameters for achieving tens of thousands of simultaneous connections.

OperationsPerformancenginx
0 likes · 5 min read
How to Boost Nginx Concurrency to 100k+ Connections: Practical Tuning Guide
Deepin Linux
Deepin Linux
Jan 25, 2026 · Fundamentals

Why mmap Outperforms io_uring in Real-World I/O – A Deep Linux Memory‑Mapping Guide

mmap, the classic Linux memory‑mapping technique, often surpasses the modern async io_uring in various I/O scenarios by eliminating redundant data copies, reducing system calls, and enabling zero‑copy access, while the article explains its fundamentals, workflow, performance comparisons, practical usage, pitfalls, and code examples.

LinuxPerformanceio_uring
0 likes · 44 min read
Why mmap Outperforms io_uring in Real-World I/O – A Deep Linux Memory‑Mapping Guide
Alibaba Cloud Big Data AI Platform
Alibaba Cloud Big Data AI Platform
Jan 23, 2026 · Backend Development

Why Elasticsearch’s 10,000 Hit Limit Slows Your Cluster and How to Fix It

Elasticsearch defaults to a total hit count of 10,000 after version 7.x, which many developers override with "track_total_hits": true to get exact numbers, but this seemingly harmless change can double CPU usage and increase query latency from 20 ms to 500 ms due to the underlying Block‑Max WAND algorithm and its interaction with aggregations, sorting, and scoring.

Block-Max WANDElasticsearchPerformance
0 likes · 11 min read
Why Elasticsearch’s 10,000 Hit Limit Slows Your Cluster and How to Fix It
Alibaba Cloud Infrastructure
Alibaba Cloud Infrastructure
Jan 21, 2026 · Artificial Intelligence

Boost LLM Performance: Deploy Qwen3‑235B with PD‑Separation, MoE, SGLang & RBG

This article details how to deploy the 235‑billion‑parameter Qwen3‑235B model using PD‑separation and MoE techniques, explains the associated challenges, and demonstrates a production‑grade solution built on the high‑performance SGLang inference engine and the RoleBasedGroup (RBG) orchestration framework, complete with benchmark results and best‑practice YAML examples.

AIKubernetesLLM
0 likes · 21 min read
Boost LLM Performance: Deploy Qwen3‑235B with PD‑Separation, MoE, SGLang & RBG
php Courses
php Courses
Jan 21, 2026 · Backend Development

How PHP 8 JIT Boosts Laravel Performance: Principles, Benchmarks, and Configuration

This article explains PHP 8's Just‑In‑Time compiler, shows how it can accelerate CPU‑intensive tasks by 20‑40% or more, demonstrates real‑world gains in Laravel applications, provides step‑by‑step enabling and tuning instructions, and discusses the scenarios where JIT is most effective or limited.

JITLaravelOptimization
0 likes · 8 min read
How PHP 8 JIT Boosts Laravel Performance: Principles, Benchmarks, and Configuration
Code Wrench
Code Wrench
Jan 21, 2026 · Backend Development

Mastering Cache Eviction in Go: When and How to Use LRU

This article explains why naive cache eviction fails, why LRU is the go‑to strategy for many Go projects, and provides a production‑ready LRU implementation with detailed code, lock‑granularity tips, key design considerations, and scenarios where LRU is not suitable.

CacheGoLRU
0 likes · 9 min read
Mastering Cache Eviction in Go: When and How to Use LRU
DevOps Coach
DevOps Coach
Jan 19, 2026 · Fundamentals

Why Rust Feels Hard at First—and How It Actually Boosts Your Productivity

The article shares a developer’s journey from initial frustration with Rust’s strict compiler to discovering its safety guarantees, performance advantages, and how its ownership model forces better architecture, illustrated with benchmarks, code flow diagrams, and practical takeaways for building reliable CLI tools.

CLI toolsPerformanceRust
0 likes · 5 min read
Why Rust Feels Hard at First—and How It Actually Boosts Your Productivity
ITPUB
ITPUB
Jan 19, 2026 · Databases

Why IN/NOT IN Slow Down Queries and How to Replace Them

The article explains how using IN and NOT IN in SQL can dramatically hurt performance and produce incorrect results, especially with large tables or NULL values, and demonstrates safer alternatives such as EXISTS, NOT EXISTS, and JOIN with concrete code examples.

EXISTSINJoin
0 likes · 6 min read
Why IN/NOT IN Slow Down Queries and How to Replace Them
dbaplus Community
dbaplus Community
Jan 18, 2026 · Databases

Avoid These Common SQL Performance Pitfalls for Faster Queries

This guide enumerates frequent misconceptions in SQL performance—from over‑indexing and SELECT * misuse to improper transaction handling and outdated monitoring practices—explains why they hurt efficiency, and provides concrete, version‑aware solutions to optimize queries, schema design, and database operations.

DatabaseOptimizationPerformance
0 likes · 26 min read
Avoid These Common SQL Performance Pitfalls for Faster Queries
Raymond Ops
Raymond Ops
Jan 17, 2026 · Operations

Scaling Ansible: From Manual Deployments to Managing Thousands of Servers

This article walks through the challenges of manual server deployment, explains why Ansible is ideal for large‑scale environments, and provides a complete reference architecture, optimized configuration, dynamic inventory scripts, modular playbooks, performance tuning, monitoring, security hardening, rollback mechanisms, cost analysis, and practical lessons learned for automating deployments across thousands of machines.

DeploymentPerformanceansible
0 likes · 20 min read
Scaling Ansible: From Manual Deployments to Managing Thousands of Servers
Tech Musings
Tech Musings
Jan 16, 2026 · Backend Development

Unlock Go’s New SIMD API: Boost Performance with GOEXPERIMENT=simd

This article explains the motivation behind adding SIMD support to Go, describes the two‑level design of the experimental simd/archsimd package, provides step‑by‑step configuration and code examples for common data‑processing tasks, and presents benchmark results that show up to nearly nine‑fold speedups without extra memory allocations.

GOEXPERIMENTGoPerformance
0 likes · 17 min read
Unlock Go’s New SIMD API: Boost Performance with GOEXPERIMENT=simd
Zhihu Tech Column
Zhihu Tech Column
Jan 16, 2026 · Mobile Development

How a Custom C++ Native Rendering Engine Boosted Reading‑App Performance by Over 2%

The article details the design of a cross‑platform C++ rendering engine built for a mobile reading app, explaining its three‑layer architecture, file‑format support, layout and caching mechanisms, security features, and how these technical choices delivered measurable improvements in page views, reading time, and conversion rates.

CMobile DevelopmentPerformance
0 likes · 35 min read
How a Custom C++ Native Rendering Engine Boosted Reading‑App Performance by Over 2%
AI Tech Publishing
AI Tech Publishing
Jan 15, 2026 · Artificial Intelligence

Choosing the Right Multi-Agent Architecture: Practical Guidance

This article analyzes why single‑agent systems hit limits in context management and distributed development, compares four multi‑agent patterns (Subagents, Skills, Handoffs, Router) with concrete performance data across three scenarios, and offers a decision framework for selecting the most suitable architecture.

Context ManagementDistributed DevelopmentPerformance
0 likes · 11 min read
Choosing the Right Multi-Agent Architecture: Practical Guidance
Alibaba Cloud Observability
Alibaba Cloud Observability
Jan 12, 2026 · Cloud Native

How Alibaba Cloud’s One‑Click I/O Diagnosis Detects and Resolves Storage Anomalies

This article explains how Alibaba Cloud CloudMonitor 2.0 integrates SysOM intelligent diagnostics to automatically detect, analyze, and remediate I/O performance issues in multi‑tenant, hybrid‑cloud environments by using dynamic thresholds, a monitor‑first on‑demand capture architecture, and automated root‑cause reporting.

MonitoringOperationsPerformance
0 likes · 13 min read
How Alibaba Cloud’s One‑Click I/O Diagnosis Detects and Resolves Storage Anomalies
IT Services Circle
IT Services Circle
Jan 12, 2026 · Frontend Development

8 Chrome DevTools Tricks Every Frontend Developer Should Know

This article presents eight practical Chrome DevTools techniques—including designMode editing, request replay, local overrides, quick fetch copying, request filtering, DOM selection shortcuts, on‑the‑fly npm installation, and fast source navigation—to boost debugging efficiency and streamline front‑end workflows.

Chrome DevToolsDebuggingFrontend
0 likes · 6 min read
8 Chrome DevTools Tricks Every Frontend Developer Should Know
JavaGuide
JavaGuide
Jan 11, 2026 · Operations

IntelliJ IDEA 2025.3.1.1 Emergency Fix: Resolving Maven Freeze and WSL2 Config Loss

IntelliJ IDEA 2025.3.1 introduced severe Maven project initialization memory leaks and WSL2 file‑system configuration resets, causing IDE freezes and OOM crashes, but JetBrains addressed these issues in the 2025.3.1.1 update and provides temporary workarounds such as cache cleanup, icon disabling, and registry tweaks.

IDE bugsIntelliJ IDEAJava
0 likes · 6 min read
IntelliJ IDEA 2025.3.1.1 Emergency Fix: Resolving Maven Freeze and WSL2 Config Loss
Ray's Galactic Tech
Ray's Galactic Tech
Jan 9, 2026 · Operations

Why Does Nginx Return 502 Bad Gateway? A Complete Log‑to‑FastCGI Timeout Diagnosis

This guide walks through diagnosing intermittent 502 Bad Gateway errors in Nginx by analyzing error logs, checking upstream and FastCGI timeout settings, reviewing PHP‑FPM configuration, performing performance tuning, and outlining advanced troubleshooting, monitoring, and capacity‑planning strategies to ensure stable high‑traffic deployments.

502PerformanceTroubleshooting
0 likes · 9 min read
Why Does Nginx Return 502 Bad Gateway? A Complete Log‑to‑FastCGI Timeout Diagnosis
Instant Consumer Technology Team
Instant Consumer Technology Team
Jan 9, 2026 · Frontend Development

How to Eliminate Frontend Memory Leaks: A Full‑Chain Governance Blueprint

This article presents a comprehensive frontend memory‑leak mitigation system that combines custom ESLint rules, layered testing, and production‑level monitoring to shift leak detection from runtime crashes to code‑commit time, cutting fix cost from days to minutes and achieving a 99% crash‑rate reduction.

ESLintFrontendMemory Leak
0 likes · 29 min read
How to Eliminate Frontend Memory Leaks: A Full‑Chain Governance Blueprint
Data STUDIO
Data STUDIO
Jan 9, 2026 · Fundamentals

6 Hidden Python Features That Can Double Your Coding Efficiency

This article showcases six powerful yet often overlooked Python standard‑library features—pathlib, contextlib, __slots__, functools.lru_cache, generator pipelines, and dataclasses—demonstrating how they simplify code, boost performance, reduce memory usage, and make scripts more maintainable.

GeneratorsPerformancePython
0 likes · 11 min read
6 Hidden Python Features That Can Double Your Coding Efficiency
Ops Community
Ops Community
Jan 8, 2026 · Fundamentals

How to Choose, Configure, and Monitor RAID for Production Systems

This comprehensive guide walks you through RAID fundamentals, explains each RAID level’s performance and reliability trade‑offs, shows real‑world selection criteria, provides step‑by‑step Linux and hardware RAID configuration scripts, monitoring tools, troubleshooting tips, and best‑practice recommendations for modern storage environments.

LinuxMonitoringPerformance
0 likes · 55 min read
How to Choose, Configure, and Monitor RAID for Production Systems
SpringMeng
SpringMeng
Jan 8, 2026 · Backend Development

How to Cut API Latency from Seconds to Milliseconds: Elegant Optimization Techniques

This article walks through a series of practical backend techniques—batch processing, asynchronous execution, caching, pre‑processing, pooling, parallelization, indexing, transaction management, pagination, and lock granularity—to dramatically reduce API response times from several seconds to just a few milliseconds.

API optimizationAsynchronousBatch Processing
0 likes · 9 min read
How to Cut API Latency from Seconds to Milliseconds: Elegant Optimization Techniques
Java Architecture Diary
Java Architecture Diary
Jan 8, 2026 · Backend Development

Why Tomcat Outperforms Jetty 15× with Virtual Threads in Spring Boot 4.0

A detailed benchmark shows that enabling Java virtual threads in Spring Boot 4.0 makes Tomcat handle up to fifteen times more requests than Jetty, while startup times remain similar, and the article explains the test setup, configuration steps, native image builds, and the reasons behind Jetty's limitation.

DockerJettyPerformance
0 likes · 10 min read
Why Tomcat Outperforms Jetty 15× with Virtual Threads in Spring Boot 4.0
Java Backend Technology
Java Backend Technology
Jan 7, 2026 · Backend Development

Why Spring WebFlux Matters: From Blocking MVC to Reactive Non‑Blocking Architecture

The article explains the limitations of Spring MVC's blocking model, introduces Spring WebFlux's reactive, asynchronous, non‑blocking architecture, compares annotation and functional programming models, details core components and request flow, and provides guidance on when and how to adopt WebFlux for high‑concurrency I/O‑intensive applications.

Backend ArchitectureFluxNon-blocking I/O
0 likes · 13 min read
Why Spring WebFlux Matters: From Blocking MVC to Reactive Non‑Blocking Architecture
Su San Talks Tech
Su San Talks Tech
Jan 7, 2026 · Databases

Why MySQL NULL Values Can Cause P0 Outages and How to Avoid Them

This article explains how improper use of NULL in MySQL columns can lead to serious production incidents, outlines official recommendations against NULL, demonstrates its impact on queries, indexes, and storage, and provides practical guidelines for when to use or avoid NULL values.

Database DesignNULLPerformance
0 likes · 13 min read
Why MySQL NULL Values Can Cause P0 Outages and How to Avoid Them

From Minutes to Milliseconds: Atlas Architecture Solves Verification Bottlenecks

The paper presents Atlas, a native three‑layer distributed verification system that replaces centralized tools with switch, region, and center adapters, achieving sub‑20 ms validation for thousands of nodes and up to 1500× speedup over EPVerifier, while supporting incremental updates and preserving scalability.

ATLASPerformanceScalability
0 likes · 7 min read
From Minutes to Milliseconds: Atlas Architecture Solves Verification Bottlenecks
Tech Freedom Circle
Tech Freedom Circle
Jan 6, 2026 · Backend Development

Why Choose RocketMQ Over Kafka? The Real Reasons Behind the 90% Mistake

This article dissects a common interview question about Kafka's higher throughput versus RocketMQ's richer features, explains the underlying design philosophies, storage models, I/O paths, scaling limits, real‑world use cases such as transaction, delayed and ordered messages, and provides concrete optimization steps and code samples to help engineers make an informed messaging platform choice.

Distributed SystemsJavaKafka
0 likes · 42 min read
Why Choose RocketMQ Over Kafka? The Real Reasons Behind the 90% Mistake
Xiao Liu Lab
Xiao Liu Lab
Jan 6, 2026 · Operations

Boost Docker Pull Speed: Verified Mirror List & One‑Click Setup (2026)

This guide explains why Docker image pulls can be painfully slow, presents a curated list of reliable mirror URLs verified on January 6 2026, provides a one‑click installation script for Docker with automatic mirror configuration, and includes detailed manual setup steps and verification commands for Linux environments.

Container RegistryDevOpsDocker
0 likes · 8 min read
Boost Docker Pull Speed: Verified Mirror List & One‑Click Setup (2026)
Raymond Ops
Raymond Ops
Jan 5, 2026 · Operations

Boost K8s Node Network Performance: Proven Linux Kernel Tuning Hacks

This guide explains why network tuning is critical for high‑concurrency Kubernetes clusters and provides step‑by‑step Linux kernel parameter adjustments, scripts, and real‑world case studies that can increase node network throughput by over 30% while reducing latency and connection‑timeout rates.

KubernetesLinuxOperations
0 likes · 11 min read
Boost K8s Node Network Performance: Proven Linux Kernel Tuning Hacks
Ops Community
Ops Community
Jan 5, 2026 · Operations

Shell vs Python for System Automation: Which One Should You Use?

This article compares Shell and Python for system automation, presenting performance benchmarks across file processing, log analysis, and bulk server operations, and offers practical guidance on when to choose each language, migration strategies, code templates, common pitfalls, and best‑practice recommendations for ops engineers.

OperationsPerformanceShell
0 likes · 26 min read
Shell vs Python for System Automation: Which One Should You Use?
MaGe Linux Operations
MaGe Linux Operations
Jan 5, 2026 · Cloud Native

What Really Happens When You Deploy Istio? 6 Hard‑Learned Lessons from a Year‑Long Production Run

After a year of running Istio in production on a 80‑service, 200‑node Kubernetes fleet, we share six painful pitfalls—including unexpected latency, debugging complexity, upgrade nightmares, configuration explosion, compatibility issues, and mTLS challenges—plus practical mitigation steps and guidance on when Istio truly adds value.

DebuggingIstioKubernetes
0 likes · 22 min read
What Really Happens When You Deploy Istio? 6 Hard‑Learned Lessons from a Year‑Long Production Run
MaGe Linux Operations
MaGe Linux Operations
Jan 4, 2026 · Operations

Why Your API Service Hits 200k TIME_WAIT Connections and How to Fix It

This article explains why high‑traffic Linux services can exhaust TCP connections with massive TIME_WAIT and CLOSE_WAIT counts, shows how to diagnose the problem using netstat/ss commands, and provides concrete kernel‑parameter tweaks, connection‑pool strategies, and monitoring scripts to restore stability.

MonitoringNetwork TuningPerformance
0 likes · 21 min read
Why Your API Service Hits 200k TIME_WAIT Connections and How to Fix It
Java Companion
Java Companion
Jan 4, 2026 · Backend Development

Achieve 10× Faster APIs with Spring Boot 3’s Three‑Level Cache Pyramid

The article demonstrates how to combine Spring Boot 3, Caffeine local cache, and Redis into a three‑level cache pyramid, reducing API response time from 28 ms to 2 ms, cutting CPU usage by 35 %, and providing detailed configuration, code examples, performance benchmarks, and mitigation strategies for common high‑concurrency pitfalls.

CacheCaffeineJava
0 likes · 10 min read
Achieve 10× Faster APIs with Spring Boot 3’s Three‑Level Cache Pyramid
Mike Chen's Internet Architecture
Mike Chen's Internet Architecture
Jan 3, 2026 · Databases

Essential MySQL Commands Every DBA Should Know

This guide presents a comprehensive collection of essential MySQL commands, covering connection management, database creation and selection, table definition and alteration, CRUD operations, query optimization techniques, performance monitoring, and user permission handling, providing clear examples for each command.

AdministrationDatabasePerformance
0 likes · 7 min read
Essential MySQL Commands Every DBA Should Know
Ray's Galactic Tech
Ray's Galactic Tech
Jan 2, 2026 · Backend Development

12 Proven Backend Optimization Techniques to Boost API Performance

Explore a comprehensive set of backend performance strategies—including asynchronous processing, multi-level caching, batch operations, and space‑time tradeoffs—detailing typical scenarios, implementation methods, and measurable effects to dramatically improve API response speed, throughput, and system stability.

AsynchronousOptimizationPerformance
0 likes · 8 min read
12 Proven Backend Optimization Techniques to Boost API Performance
Code Mala Tang
Code Mala Tang
Jan 2, 2026 · Frontend Development

Boost Web App Performance with Web Workers: A Practical Guide

This article explains how JavaScript's single‑threaded nature can freeze UI during heavy calculations and shows step‑by‑step how to offload work to Web Workers, integrate external libraries, configure build tools, and follow best practices for smooth, responsive web applications.

JavaScriptPerformanceWeb Development
0 likes · 10 min read
Boost Web App Performance with Web Workers: A Practical Guide
Java Architect Handbook
Java Architect Handbook
Jan 1, 2026 · Databases

COUNT(*), COUNT(1) or COUNT(column) in MySQL? Deep Interview Guide

This article explains the semantic differences, performance characteristics, and optimal usage scenarios of COUNT(*), COUNT(1), and COUNT(column) in MySQL 8.0+, covering engine behavior, indexing effects, common misconceptions, and practical best‑practice recommendations for interview preparation and real‑world development.

COUNTInterviewPerformance
0 likes · 10 min read
COUNT(*), COUNT(1) or COUNT(column) in MySQL? Deep Interview Guide
Architect's Guide
Architect's Guide
Jan 1, 2026 · Backend Development

How to Efficiently Import and Export Millions of Records with POI and EasyExcel

This article explains how to handle massive Excel import/export tasks in Java by comparing POI workbook implementations, selecting the appropriate class based on data size, and using EasyExcel with batch processing, JDBC transactions, and pagination to achieve fast, low‑memory operations for hundreds of millions of rows.

Data ExportJavaPOI
0 likes · 21 min read
How to Efficiently Import and Export Millions of Records with POI and EasyExcel
JavaScript
JavaScript
Dec 31, 2025 · Frontend Development

7 Reliable Alternatives to setTimeout for Precise JavaScript Timing

The article outlines seven browser‑based techniques—including requestAnimationFrame, setInterval, requestIdleCallback, Web Workers, Promise + async/await, the Web Animations API, and Intersection Observer—each offering higher accuracy, better resource handling, or smoother execution than the traditional setTimeout timer.

FrontendJavaScriptPerformance
0 likes · 4 min read
7 Reliable Alternatives to setTimeout for Precise JavaScript Timing