Tagged articles
78 articles
Page 1 of 1
Lobster Programming
Lobster Programming
May 6, 2026 · Backend Development

How to Choose the Right MQ: RabbitMQ vs RocketMQ vs Kafka

This article compares RabbitMQ, RocketMQ, and Kafka on throughput, latency, scalability, and reliability, outlining each system's core features and recommending suitable scenarios such as reliable messaging, high‑performance streaming, and large‑scale real‑time data processing.

KafkaLatencyMessage Queue
0 likes · 6 min read
How to Choose the Right MQ: RabbitMQ vs RocketMQ vs Kafka
dbaplus Community
dbaplus Community
Apr 22, 2026 · Fundamentals

Is UDP Really Faster Than TCP? A Deep Dive into Their Speed Trade‑offs

This article analytically compares UDP and TCP, detailing UDP’s minimalist design, low‑latency advantages, lack of congestion control and broadcast capabilities, while also explaining TCP’s reliability, congestion‑aware throughput and suitability for large or critical data, helping readers choose the optimal protocol for specific scenarios.

LatencyNetwork ProtocolsTCP
0 likes · 12 min read
Is UDP Really Faster Than TCP? A Deep Dive into Their Speed Trade‑offs
Java Architect Handbook
Java Architect Handbook
Apr 22, 2026 · Backend Development

How Changing Five Lines of Code Boosted API Throughput Over 10×

A low‑traffic B2B service struggled to meet a 500 req/s demand, achieving only 50 req/s with high CPU usage; through systematic profiling, lock analysis, async refactoring, thread‑pool tuning, and eliminating costly Spring bean creation, the team dramatically improved response times and throughput, revealing deeper CPU‑usage mysteries.

JavaPerformance OptimizationProfiling
0 likes · 16 min read
How Changing Five Lines of Code Boosted API Throughput Over 10×
mikechen
mikechen
Mar 12, 2026 · Big Data

How Kafka Handles Million‑Message Concurrency: Architecture Deep Dive

This article explains how Kafka’s sequential disk writes, zero‑copy data path, partition‑based parallelism, and configurable broker and partition settings enable linear‑scale throughput that can reach millions of transactions per second in large‑scale streaming systems.

Distributed SystemsPartitioningThroughput
0 likes · 5 min read
How Kafka Handles Million‑Message Concurrency: Architecture Deep Dive
MaGe Linux Operations
MaGe Linux Operations
Dec 19, 2025 · Artificial Intelligence

Boost vLLM Inference Throughput by 40% with Three Simple Config Tweaks

After discovering that only a few vLLM settings truly impact performance, this guide details how adjusting gpu_memory_utilization, max_num_batched_tokens, and enabling chunked prefill can raise Qwen2.5‑72B‑Instruct throughput from ~1800 to over 2500 tokens/s, improve latency, and provides comprehensive deployment, monitoring, and troubleshooting instructions.

DockerGPUInference Optimization
0 likes · 30 min read
Boost vLLM Inference Throughput by 40% with Three Simple Config Tweaks
Su San Talks Tech
Su San Talks Tech
Nov 4, 2025 · Backend Development

How I Boosted a Java Backend’s Throughput from 50/s to 500/s: A Real‑World Performance Debugging Journey

In this detailed case study, the author walks through diagnosing and fixing severe throughput bottlenecks in a Java Spring‑based B2B service, covering lock contention, slow SQL, excessive logging, thread‑pool tuning, JVM memory adjustments, and the impact of bean creation on performance, ultimately achieving nearly a ten‑fold increase in requests per second.

JavaProfilingThroughput
0 likes · 14 min read
How I Boosted a Java Backend’s Throughput from 50/s to 500/s: A Real‑World Performance Debugging Journey
Tech Stroll Journey
Tech Stroll Journey
Oct 30, 2025 · Operations

How to Use fio to Measure Disk IOPS, Throughput, and Latency on Ubuntu

This guide explains how to install fio on Ubuntu 20.04, configure test environments, run IOPS and latency benchmarks with specific parameters, and interpret key metrics such as bandwidth, IOPS, slat, and clat to evaluate storage performance under high‑load and single‑request scenarios.

BenchmarkDisk PerformanceIOPS
0 likes · 7 min read
How to Use fio to Measure Disk IOPS, Throughput, and Latency on Ubuntu
dbaplus Community
dbaplus Community
Jul 16, 2025 · Databases

What’s the Optimal Database Connection Count? A Data‑Driven Study

This article examines why many applications set overly large database connection pools, proposes a standard of ten connections per instance based on load‑testing results, and validates the recommendation through single‑interface and link‑level performance experiments that show no throughput degradation at lower connection counts.

Performance TestingScalabilityThroughput
0 likes · 7 min read
What’s the Optimal Database Connection Count? A Data‑Driven Study
ITPUB
ITPUB
May 25, 2025 · Databases

MySQL vs PostgreSQL: Which Database Handles High‑Throughput Writes Faster?

A detailed benchmark comparing MySQL 9.0 and PostgreSQL 17.0 evaluates ingestion latency, throughput, saturation, and connection‑pool behavior, revealing that PostgreSQL consistently delivers lower write latency, higher QPS, better CPU and memory efficiency, and superior disk storage efficiency across both write and read workloads.

Connection PoolDatabase IngestionLatency
0 likes · 9 min read
MySQL vs PostgreSQL: Which Database Handles High‑Throughput Writes Faster?
Architect
Architect
May 12, 2025 · Backend Development

Why 500 RPS Dropped to 50 RPS: Tracing Spring Bean Creation and Thread‑Pool Bottlenecks

A ToB Java service that initially expected 500 requests per second fell to only 50 RPS under load, prompting a step‑by‑step investigation of CPU usage, lock contention, slow SQL, excessive logging, prototype‑scoped beans, and thread‑pool configuration, ultimately revealing how bean creation and async execution affect throughput.

BackendJavaProfiling
0 likes · 16 min read
Why 500 RPS Dropped to 50 RPS: Tracing Spring Bean Creation and Thread‑Pool Bottlenecks
Architects' Tech Alliance
Architects' Tech Alliance
May 7, 2025 · Industry Insights

What Determines AI Chip Performance? Accuracy, Throughput, Latency & Energy Explained

This article provides a concise technical overview of AI chip key metrics—accuracy, throughput, latency, and energy consumption—explains their impact on hardware design, discusses critical design points such as MAC reduction and processing element optimization, and summarizes practical takeaways for evaluating AI accelerator solutions.

AI ChipEnergy ConsumptionLatency
0 likes · 9 min read
What Determines AI Chip Performance? Accuracy, Throughput, Latency & Energy Explained
FunTester
FunTester
Apr 27, 2025 · Operations

Why Packet Loss Can Cripple HTTP Performance—and How to Measure Its Impact

This article explains how packet loss in TCP/IP networks triggers retransmissions that dramatically increase HTTP latency, reduce throughput, and cause cascading failures, then details an experiment using ChaosMesh to quantify these effects across different payload sizes and loss rates, and offers practical testing guidelines.

ChaosMeshHTTP performancePacket Loss
0 likes · 11 min read
Why Packet Loss Can Cripple HTTP Performance—and How to Measure Its Impact
Java Tech Enthusiast
Java Tech Enthusiast
Apr 9, 2025 · Databases

MySQL vs PostgreSQL Performance Benchmark: Latency, Throughput, and Saturation

The benchmark comparing MySQL 9.0 and PostgreSQL 17.0 shows PostgreSQL consistently achieving lower insertion latency, roughly double the throughput (≈19 k QPS vs 10 k QPS), using less CPU, memory and disk I/O, while both hit an 80‑connection pool limit and PostgreSQL maintains stable read latency as MySQL’s performance degrades beyond ~5.5 k QPS.

LatencyPostgreSQLThroughput
0 likes · 7 min read
MySQL vs PostgreSQL Performance Benchmark: Latency, Throughput, and Saturation
Lin is Dream
Lin is Dream
Mar 16, 2025 · Fundamentals

Mastering TPS and QPS: Simple Calculations and Real-World Examples

This article explains the key performance metrics TPS (transactions per second) and QPS (queries per second), provides formulas for calculating them, and demonstrates practical calculations for multi-node deployments, illustrating how request latency, thread pools, and instance count affect overall system concurrency and throughput.

QPSTPSThroughput
0 likes · 3 min read
Mastering TPS and QPS: Simple Calculations and Real-World Examples
Architects' Tech Alliance
Architects' Tech Alliance
Mar 12, 2025 · Industry Insights

What Do AI Chip Metrics Really Reveal? A Deep Dive into Latency, Throughput, and Energy

This article provides a technical breakdown of AI chip key performance indicators—accuracy, throughput, latency, and energy consumption—explains how MAC and processing‑element design affect these metrics, and outlines design strategies for maximizing throughput while minimizing latency and power use.

AI chipsIndustry analysisLatency
0 likes · 8 min read
What Do AI Chip Metrics Really Reveal? A Deep Dive into Latency, Throughput, and Energy
Architect
Architect
Aug 8, 2024 · Mobile Development

How to Build a Passive Weak‑Network Diagnosis System for Mobile Apps

This article details the design and implementation of a passive weak‑network diagnosis framework for a mobile app, covering background, overall architecture, data collection of HttpRTT and throughput, filtering strategies, weighted median calculations, caching, interface design, threshold definitions, performance metrics, and practical application scenarios.

AndroidHttpRTTNetwork Diagnostics
0 likes · 24 min read
How to Build a Passive Weak‑Network Diagnosis System for Mobile Apps
Liangxu Linux
Liangxu Linux
Jun 17, 2024 · Fundamentals

Understanding the Four Key Network Performance Metrics: Bandwidth, Latency, Jitter, and Packet Loss

The article explains the four essential network performance indicators—bandwidth, latency, jitter, and packet loss—defining each term, describing how they are measured, illustrating their impact with examples, and clarifying related concepts such as bits versus bytes, processing, queueing, transmission, and propagation delays.

LatencyPacket LossThroughput
0 likes · 7 min read
Understanding the Four Key Network Performance Metrics: Bandwidth, Latency, Jitter, and Packet Loss
dbaplus Community
dbaplus Community
Apr 29, 2024 · Fundamentals

Why Gigabit Ethernet Falls Short of 125 MB/s and the Jumbo Frame Fix

Although a 1 GbE (1000 Mbps) link theoretically transfers 125 MB per second, real‑world speeds are lower due to protocol overhead, Ethernet framing, and MTU limits; understanding binary prefixes, frame structure, and employing jumbo frames can significantly improve effective throughput.

BinaryPrefixesJumboFramesMTU
0 likes · 10 min read
Why Gigabit Ethernet Falls Short of 125 MB/s and the Jumbo Frame Fix
DataFunSummit
DataFunSummit
Apr 10, 2024 · Artificial Intelligence

Large Language Model Inference Overview and Performance Optimizations

This article presents a comprehensive overview of large language model inference, describing the prefill and decoding stages, key performance metrics such as throughput, latency and QPS, and detailing a series of system-level optimizations—including pipeline parallelism, dynamic batching, KV‑cache quantization, and hardware considerations—to significantly improve inference efficiency on modern GPUs.

GPUInferenceLatency
0 likes · 23 min read
Large Language Model Inference Overview and Performance Optimizations
DataFunTalk
DataFunTalk
Feb 19, 2024 · Artificial Intelligence

Large Language Model Inference Overview and Performance Optimizations

This article presents a comprehensive overview of large language model inference, detailing the prefill and decoding stages, key performance metrics such as throughput, latency and QPS, and a series of system-level optimizations—including pipeline parallelism, dynamic batching, specialized attention kernels, virtual memory allocation, KV‑cache quantization, and mixed‑precision strategies—to improve GPU utilization and overall inference efficiency.

GPULLMLatency
0 likes · 24 min read
Large Language Model Inference Overview and Performance Optimizations
Java Backend Technology
Java Backend Technology
Nov 9, 2023 · Backend Development

Boosting Java Service Throughput from 50/s to 500/s: My Performance Tuning Journey

Faced with a client demanding 500 requests per second, I discovered my Java backend only handled 50 /s due to slow SQL, excessive logging, thread‑pool misconfiguration, and costly Spring bean creation; by adding latency alerts, async execution, reducing thread counts, and fixing Redis bean scope, throughput nearly doubled.

JavaProfilingThroughput
0 likes · 15 min read
Boosting Java Service Throughput from 50/s to 500/s: My Performance Tuning Journey
Architecture Digest
Architecture Digest
Oct 31, 2023 · Backend Development

Performance Troubleshooting and Optimization of a ToB System: From Low Throughput to Improved CPU Utilization

This article documents a step‑by‑step investigation of a Java Spring backend that initially achieved only 50 requests per second under load, detailing how slow SQL, excessive logging, thread‑pool misconfiguration, bean‑creation overhead and CPU‑bound operations were identified and mitigated to roughly double the throughput while reducing response latency.

JavaProfilingThroughput
0 likes · 14 min read
Performance Troubleshooting and Optimization of a ToB System: From Low Throughput to Improved CPU Utilization
Continuous Delivery 2.0
Continuous Delivery 2.0
Apr 12, 2023 · Operations

Improving Stability and Throughput in Large‑Scale Software Delivery through Continuous Delivery Practices

The article explains how organizations can boost software delivery stability and throughput by adopting continuous delivery, establishing consistent metrics, reducing manual testing, automating configuration and deployment, and applying incremental, value‑stream‑focused improvements to both technical and cultural processes.

Continuous DeliveryDevOpsThroughput
0 likes · 9 min read
Improving Stability and Throughput in Large‑Scale Software Delivery through Continuous Delivery Practices
Code Ape Tech Column
Code Ape Tech Column
Nov 9, 2022 · Operations

System Performance Optimization: Definitions, Testing, Bottleneck Identification, and Common Strategies

This article explains system performance concepts such as throughput and latency, describes how to design and run performance tests, outlines methods for locating bottlenecks at the OS, code, network, and database levels, and presents practical optimization techniques ranging from algorithmic improvements to I/O and TCP tuning.

Database OptimizationLatencyNetwork Tuning
0 likes · 35 min read
System Performance Optimization: Definitions, Testing, Bottleneck Identification, and Common Strategies
MaGe Linux Operations
MaGe Linux Operations
Jul 10, 2022 · Fundamentals

Mastering System Performance: Key Concepts, Metrics, and Optimization Strategies

System performance examines the interplay of hardware and software components, focusing on latency, throughput, and cost reduction, while exploring essential concepts, measurement techniques, trade‑offs, optimization layers, ROI considerations, and practical guidelines for effective performance analysis across diverse computing environments.

LatencySystemsThroughput
0 likes · 14 min read
Mastering System Performance: Key Concepts, Metrics, and Optimization Strategies
OPPO Kernel Craftsman
OPPO Kernel Craftsman
Jul 1, 2022 · Operations

Linux Kernel Performance Profiling: A Comprehensive Guide to On-CPU and Off-CPU Analysis

This comprehensive guide explains Linux kernel performance profiling—both on‑CPU and off‑CPU—by stressing the need to target the critical 3 % of code, covering throughput, latency and power metrics, scalability laws, flame‑graph visualizations, perf and eBPF tools, lock‑contention analysis, and further reading recommendations.

Linux kernelThroughputeBPF
0 likes · 27 min read
Linux Kernel Performance Profiling: A Comprehensive Guide to On-CPU and Off-CPU Analysis
dbaplus Community
dbaplus Community
Mar 27, 2022 · Backend Development

When to Choose Kafka Over RabbitMQ: A Six‑Scenario Comparison

This article compares Kafka and RabbitMQ across six real‑world scenarios—message ordering, routing, timeout handling, persistence, error handling, and throughput—to help engineers decide which message queue best fits their system requirements.

Backend ArchitectureKafkaMessage Ordering
0 likes · 12 min read
When to Choose Kafka Over RabbitMQ: A Six‑Scenario Comparison
Youzan Coder
Youzan Coder
Mar 3, 2022 · Operations

How Standard Deviation Uncovers Hidden Bottlenecks in Software R&D Throughput

The article introduces a new R&D efficiency metric—throughput standard deviation—explains its statistical basis, shows how it was derived from annual reports, illustrates its application across multiple teams, and discusses practical insights and limitations for software development operations.

OperationsR&D efficiencyThroughput
0 likes · 7 min read
How Standard Deviation Uncovers Hidden Bottlenecks in Software R&D Throughput
Code DAO
Code DAO
Dec 30, 2021 · Artificial Intelligence

Revamper: An Intelligent Data Augmentation Engine for Faster DNN Training

The article presents a new data‑refurbishing technique and the Revamper loading system that cut CPU‑heavy data‑augmentation costs while preserving model generalization, showing up to significant throughput gains for ResNet‑50 on ImageNet without sacrificing accuracy.

CPU overheadDNN trainingResNet-50
0 likes · 10 min read
Revamper: An Intelligent Data Augmentation Engine for Faster DNN Training
Top Architect
Top Architect
Oct 30, 2021 · Backend Development

RabbitMQ vs Kafka: Architectural Comparison and Throughput Considerations

This article compares RabbitMQ and Kafka by explaining their architectures, queue consumption and production mechanisms, highlighting the master‑mirror design of RabbitMQ versus Kafka's partitioned approach, and summarizing their throughput characteristics to help engineers choose the appropriate messaging middleware for their needs.

Backend DevelopmentKafkaRabbitMQ
0 likes · 7 min read
RabbitMQ vs Kafka: Architectural Comparison and Throughput Considerations
Top Architect
Top Architect
Oct 2, 2021 · Backend Development

RabbitMQ vs Kafka: Architectural Comparison and Selection Guidance

This article compares the architectures of RabbitMQ and Kafka, explaining their queue models, master‑mirror and partition mechanisms, performance trade‑offs, and provides guidance on choosing between them based on throughput requirements and system design considerations.

KafkaMessage QueueRabbitMQ
0 likes · 9 min read
RabbitMQ vs Kafka: Architectural Comparison and Selection Guidance
Fulu Network R&D Team
Fulu Network R&D Team
Jul 6, 2021 · Operations

Understanding Throughput, Concurrency, and Lock Contention in System Design

Throughput measures the rate at which an application processes tasks, distinct from concurrency, and can be improved by reducing task latency, increasing parallelism, and optimizing lock usage through finer granularity, lower cost, and techniques like buffering, merging, and batch processing to mitigate contention and enhance scalability.

LocksParallelismScalability
0 likes · 11 min read
Understanding Throughput, Concurrency, and Lock Contention in System Design
Liangxu Linux
Liangxu Linux
Jun 29, 2021 · Operations

Mastering System Metrics: QPS, TPS, PV, UV, DAU, and MAU Explained

This article clarifies core web‑service metrics—QPS, TPS, PV, UV, DAU, MAU—explains their differences, shows how concurrency and throughput relate, and outlines key performance‑testing concepts and evaluation methods for modern system capacity planning.

QPSSystem DesignTPS
0 likes · 9 min read
Mastering System Metrics: QPS, TPS, PV, UV, DAU, and MAU Explained
MaGe Linux Operations
MaGe Linux Operations
Jun 22, 2021 · Operations

Demystifying QPS, TPS, PV, UV, DAU, MAU and System Throughput

This article explains core web performance metrics such as QPS, TPS, PV, UV, DAU, MAU, concurrency, and throughput, clarifies their differences, and outlines how to evaluate system capacity and performance from user, administrator, and developer perspectives.

PerformanceMetricsQPSSystemDesign
0 likes · 8 min read
Demystifying QPS, TPS, PV, UV, DAU, MAU and System Throughput
Alibaba Cloud Developer
Alibaba Cloud Developer
Sep 15, 2020 · Big Data

Designing Nexmark: A Standard Benchmark for Stream Processing Performance

This article examines the challenges of existing stream‑processing benchmarks, introduces the open‑source Nexmark framework designed for reproducible, comprehensive performance testing, describes its metrics, query set, workload configurability, and presents experimental results on Flink, highlighting its role in advancing big‑data stream benchmarking.

BenchmarkCPUFlink
0 likes · 14 min read
Designing Nexmark: A Standard Benchmark for Stream Processing Performance
FunTester
FunTester
Aug 23, 2020 · Operations

Analyzing Throughput Errors in JMeter Load Testing

JMeter’s reported throughput can be misleading because it includes local processing time, especially when response validation such as regex extraction adds overhead, leading to significant underestimation of actual server load; the article demonstrates this with experiments and suggests micro‑benchmark corrections to obtain accurate results.

JMeterLoad TestingPerformance Testing
0 likes · 5 min read
Analyzing Throughput Errors in JMeter Load Testing
Top Architect
Top Architect
Jul 11, 2020 · Operations

7 Key Performance Metrics for Application Monitoring and Their Recommended Tools

The article outlines seven essential performance metrics—response time and throughput, average load, error rate, GC pause time, business indicators, uptime, and log size—explaining their significance for application health and recommending popular monitoring tools for each metric.

Garbage CollectionLog ManagementPerformance Monitoring
0 likes · 6 min read
7 Key Performance Metrics for Application Monitoring and Their Recommended Tools
Big Data Technology & Architecture
Big Data Technology & Architecture
Aug 22, 2019 · Big Data

Kafka Performance Testing and Optimization Report

This report presents a comprehensive performance‑testing plan for a Kafka cluster, detailing objectives, test scope, JVM and broker tuning, producer and consumer parameter experiments, extensive benchmark results, and practical recommendations for achieving high throughput and stability in large‑scale message processing.

Throughputbroker-configurationperformance-testing
0 likes · 38 min read
Kafka Performance Testing and Optimization Report
Mike Chen's Internet Architecture
Mike Chen's Internet Architecture
Jun 26, 2019 · Operations

Understanding High Concurrency: Definition, Key Metrics, and Relationship with Multithreading

High concurrency refers to a short period where a system receives a massive number of requests, such as ticket‑booking spikes, and is measured by metrics like response time, throughput, QPS, and concurrent users, while multithreading is merely one programming technique to handle such load, not synonymous with high concurrency.

Response TimeThroughputhigh concurrency
0 likes · 3 min read
Understanding High Concurrency: Definition, Key Metrics, and Relationship with Multithreading
Java Captain
Java Captain
Dec 26, 2018 · Backend Development

Comparing BIO, NIO, and Asynchronous Models Using a Bank Process Analogy

The article uses a simple bank workflow with ten employees to illustrate how BIO, NIO, and asynchronous processing differ in task allocation and throughput, showing that dividing work among specialized roles dramatically increases the number of customers served per hour.

BIOBackend DevelopmentThroughput
0 likes · 6 min read
Comparing BIO, NIO, and Asynchronous Models Using a Bank Process Analogy
Programmer DD
Programmer DD
Oct 21, 2018 · Big Data

How to Choose the Right Number of Kafka Partitions for Optimal Throughput

This article explains how to determine the optimal Kafka partition count by balancing throughput gains, key‑based ordering requirements, file descriptor limits, and availability impacts, offering practical guidelines such as testing hardware limits and using broker‑count multiples for scalable deployments.

Big DataPartitionsThroughput
0 likes · 8 min read
How to Choose the Right Number of Kafka Partitions for Optimal Throughput
JD Tech
JD Tech
Jun 30, 2018 · Operations

Essential Guide to Performance Testing: Concepts, Metrics, Process, and Best Practices

This article provides a comprehensive overview of performance testing, explaining its definition, key metrics such as throughput, response time and concurrent users, the relationship between these indicators, optimal testing timing, a step‑by‑step workflow from requirement analysis to reporting, and practical tips for effective load testing and system optimization.

Load TestingPerformance TestingResponse Time
0 likes · 8 min read
Essential Guide to Performance Testing: Concepts, Metrics, Process, and Best Practices
Efficient Ops
Efficient Ops
Apr 22, 2018 · Fundamentals

Mastering Software Performance: From Axioms to Capacity Planning

This article explains fundamental performance concepts—defining response time and throughput, using axiomatic methods, analyzing bottlenecks with sequence diagrams and profiling, applying Amdahl’s Law, and guiding capacity planning to build reliable, high‑performance applications.

Response TimeThroughputcapacity planning
0 likes · 44 min read
Mastering Software Performance: From Axioms to Capacity Planning
Meituan Technology Team
Meituan Technology Team
Nov 16, 2017 · Big Data

Performance Comparison of Apache Flink and Apache Storm for Real-Time Stream Processing

The study benchmarks Apache Flink against Apache Storm on a shared cluster, showing Flink delivering three‑to‑five times higher throughput and roughly half the latency across simple, sleep‑induced, and windowed workloads, with modest throughput loss for exactly‑once semantics, leading to a recommendation of Flink for high‑performance, stateful real‑time stream processing.

Apache FlinkApache StormExactly-Once
0 likes · 19 min read
Performance Comparison of Apache Flink and Apache Storm for Real-Time Stream Processing
DevOps
DevOps
Oct 8, 2017 · Operations

Key Lessons from “The Goal”: Theory of Constraints and Operations Management

The article summarizes the management novel “The Goal”, explaining how its Theory of Constraints concepts—throughput, inventory, operational expense, bottlenecks, and practical improvement steps—can be applied to manufacturing and DevOps to increase profitability and efficiency.

Lean ManufacturingOperations ManagementTheory of Constraints
0 likes · 10 min read
Key Lessons from “The Goal”: Theory of Constraints and Operations Management
Architecture Digest
Architecture Digest
Aug 6, 2017 · Operations

Website Performance Metrics and Optimization Strategies

This article explains key website performance metrics such as response time, concurrency, and throughput, presents typical values for various operations, and outlines practical optimization strategies for front‑end, application‑server, and storage layers, including caching, CDN, reverse proxy, clustering, and code improvements.

Response TimeThroughputWeb Optimization
0 likes · 9 min read
Website Performance Metrics and Optimization Strategies
MaGe Linux Operations
MaGe Linux Operations
May 13, 2017 · Databases

How to Evaluate and Optimize Database Performance: Key Metrics & Strategies

This article explains what constitutes a database performance problem, outlines essential metrics such as response time, throughput, baseline and bottleneck identification, and presents practical tuning methods—including workload reduction, resource configuration, and optimization balance—to help engineers systematically improve database efficiency.

Bottleneck AnalysisDatabase PerformanceSQL Optimization
0 likes · 8 min read
How to Evaluate and Optimize Database Performance: Key Metrics & Strategies
ITFLY8 Architecture Home
ITFLY8 Architecture Home
Nov 16, 2016 · Operations

Calculate System Throughput: QPS, TPS, Concurrency & Response Time

This article explains key performance testing concepts such as system throughput, QPS/TPS, concurrency, response time, and their interrelationships, provides practical calculation examples, shows how daily PV relates to TPS for different platforms, and outlines essential metrics and formulas for evaluating software performance.

Performance TestingQPSResponse Time
0 likes · 11 min read
Calculate System Throughput: QPS, TPS, Concurrency & Response Time
MaGe Linux Operations
MaGe Linux Operations
Aug 14, 2015 · Fundamentals

How to Uncover and Fix System Performance Bottlenecks: A Practical Guide

This article explains the core concepts of system performance, defines throughput and latency, describes how to measure them, and provides detailed, code‑level techniques for locating and eliminating common performance bottlenecks across operating systems, networks, databases, and application code.

Code OptimizationLatencyProfiling
0 likes · 35 min read
How to Uncover and Fix System Performance Bottlenecks: A Practical Guide
MaGe Linux Operations
MaGe Linux Operations
Aug 6, 2015 · Operations

Mastering Software Performance Testing: Key Concepts & Calculation Formulas

This article explains essential software performance testing concepts—including QPS/TPS, concurrency, response time, throughput calculations, think time, and how to estimate daily traffic using real‑world examples from e‑commerce platforms—providing formulas and practical guidance for engineers, administrators, and developers to assess and optimize system capacity.

Load TestingPerformance TestingQPS
0 likes · 11 min read
Mastering Software Performance Testing: Key Concepts & Calculation Formulas
Qunar Tech Salon
Qunar Tech Salon
Jul 5, 2015 · Databases

Conceptual Overview of SQL Server Performance Tuning

This article provides a conceptual summary of SQL Server performance tuning, explaining the goals of optimizing response time and throughput, the importance of baselines and costs, factors influencing performance, and a step‑by‑step DETECT methodology for systematic optimization.

BaselineDatabase OptimizationResponse Time
0 likes · 6 min read
Conceptual Overview of SQL Server Performance Tuning
MaGe Linux Operations
MaGe Linux Operations
May 11, 2015 · Operations

Mastering System Throughput: Key Metrics, Formulas, and Performance Testing Basics

This article explains core performance testing concepts—including QPS, concurrency, response time, and throughput calculations—illustrates how to estimate system capacity, relate traffic metrics to daily PV, and outlines the perspectives of users, administrators, developers, and test engineers for evaluating software performance.

Performance TestingQPSResponse Time
0 likes · 12 min read
Mastering System Throughput: Key Metrics, Formulas, and Performance Testing Basics