Tag

JMeter

1 views collected around this technical thread.

Top Architecture Tech Stack
Top Architecture Tech Stack
May 12, 2025 · Operations

Load Testing with Postman, Apache Bench, JMeter, and Java Concurrency Utilities

This article explains how to perform HTTP load testing using Postman, Apache Bench, JMeter, and Java concurrency classes such as CountDownLatch and Semaphore, providing step‑by‑step setup, configuration, and code examples for simulating high‑traffic scenarios.

Apache BenchCountDownLatchJMeter
0 likes · 8 min read
Load Testing with Postman, Apache Bench, JMeter, and Java Concurrency Utilities
Top Architect
Top Architect
Apr 14, 2025 · Backend Development

Measuring Heap Memory Consumption of HTTP and RPC Requests in a SpringBoot Application

This article details a step‑by‑step experiment using SpringBoot 2.5.4 and JMeter to quantify how much heap memory a single HTTP or RPC request consumes, analyzes GC logs, presents code snippets for the test endpoints, and discusses the impact of logging and payload size on memory usage.

GCHTTPJMeter
0 likes · 11 min read
Measuring Heap Memory Consumption of HTTP and RPC Requests in a SpringBoot Application
Test Development Learning Exchange
Test Development Learning Exchange
Mar 24, 2025 · Fundamentals

Fundamentals of Performance Testing: Concepts, Tools, and Best Practices

This article provides a comprehensive overview of performance testing fundamentals, covering key concepts, common test types, popular tools, test design strategies, defect management, special‑scenario testing, advanced topics like APM and micro‑services, best practices, and future trends in the field.

Best PracticesJMeterPerformance Testing
0 likes · 8 min read
Fundamentals of Performance Testing: Concepts, Tools, and Best Practices
Test Development Learning Exchange
Test Development Learning Exchange
Mar 11, 2025 · Operations

Core Concepts and Step-by-Step Guide to Interface Correlation in JMeter

This article explains the core concept of interface correlation in JMeter and provides a detailed, step-by-step procedure—including test plan creation, HTTP request setup, response extraction, variable sharing, assertions, and listeners—along with an example of passing a login token to subsequent requests and key best‑practice tips.

API testingBeanShellInterface Correlation
0 likes · 5 min read
Core Concepts and Step-by-Step Guide to Interface Correlation in JMeter
Top Architect
Top Architect
Feb 1, 2025 · Backend Development

Measuring Per‑Request Heap Memory Usage in SpringBoot with JMeter

This article describes an experiment using SpringBoot 2.5.4 and JMeter to measure the heap memory allocated per HTTP and RPC request, detailing the setup, GC logging configuration, results showing average memory consumption around 34 KB per request, and recommendations for logging and performance optimization.

GCJMeterJava
0 likes · 11 min read
Measuring Per‑Request Heap Memory Usage in SpringBoot with JMeter
Code Ape Tech Column
Code Ape Tech Column
Jan 8, 2025 · Backend Development

Implementing High‑Concurrency Flash‑Sale (Seckill) in SpringBoot: Locking Strategies, Queue Solutions, and Performance Testing

This article demonstrates how to simulate a high‑concurrency flash‑sale scenario using SpringBoot, MySQL, Mybatis‑Plus and JMeter, analyzes the overselling problem caused by premature lock release, and presents seven solutions—including lock‑first strategies, AOP, pessimistic and optimistic locks, and queue‑based approaches—along with code samples and test results.

AOPJMeterQueue
0 likes · 19 min read
Implementing High‑Concurrency Flash‑Sale (Seckill) in SpringBoot: Locking Strategies, Queue Solutions, and Performance Testing
Code Ape Tech Column
Code Ape Tech Column
Dec 10, 2024 · Backend Development

Measuring Per-Request Heap Memory Usage and GC Impact in SpringBoot with JMeter

This article demonstrates how to experimentally determine the heap memory allocated by individual HTTP and RPC requests in a SpringBoot application using JMeter load testing, GC logging, and code analysis, providing insights into memory consumption, GC frequency, and optimization strategies for backend performance.

GCJMeterJVM
0 likes · 9 min read
Measuring Per-Request Heap Memory Usage and GC Impact in SpringBoot with JMeter
Top Architect
Top Architect
Nov 14, 2024 · Backend Development

Measuring Per-Request Heap Memory Usage in SpringBoot Applications

The article details a SpringBoot experiment that uses JMeter to send 20,000 HTTP requests, captures detailed GC logs, and demonstrates that each request consumes roughly 34 KB of heap memory, with larger payloads and logging increasing the usage, highlighting the importance of memory‑aware coding and log management.

BackendGCJMeter
0 likes · 9 min read
Measuring Per-Request Heap Memory Usage in SpringBoot Applications
Mike Chen's Internet Architecture
Mike Chen's Internet Architecture
Nov 7, 2024 · Operations

Understanding and Calculating QPS (Queries Per Second) with JMeter Performance Testing

This article explains what QPS (Queries Per Second) is, presents formulas and examples for calculating overall and per‑interface QPS, and shows how to use JMeter to create a test plan, add thread groups and listeners for accurate performance measurement.

Backend MetricsJMeterPerformance Testing
0 likes · 5 min read
Understanding and Calculating QPS (Queries Per Second) with JMeter Performance Testing
Top Architecture Tech Stack
Top Architecture Tech Stack
Oct 22, 2024 · Backend Development

Measuring Per‑Request Heap Memory Usage in SpringBoot with JMeter and GC Logs

This article demonstrates how to quantify the heap memory allocated by individual HTTP and RPC calls in a SpringBoot application by creating a test service, configuring JMeter for load, capturing detailed GC logs, and analyzing the results to guide JVM and logging optimizations.

BackendPerformanceGCJMeter
0 likes · 10 min read
Measuring Per‑Request Heap Memory Usage in SpringBoot with JMeter and GC Logs
Mike Chen's Internet Architecture
Mike Chen's Internet Architecture
Sep 22, 2024 · Operations

Comprehensive Guide to Using Apache JMeter for Load and Performance Testing

This article provides a step‑by‑step tutorial on installing, configuring, and using Apache JMeter for load and performance testing, covering test plan creation, thread group settings, HTTP request configuration, listeners, and execution of stress tests, along with download instructions.

JMeterPerformance TestingTutorial
0 likes · 7 min read
Comprehensive Guide to Using Apache JMeter for Load and Performance Testing
Test Development Learning Exchange
Test Development Learning Exchange
Jul 5, 2024 · Backend Development

Choosing Between JMeter and Python for Interface Automation Testing

This article compares JMeter and Python for interface automation testing, highlighting JMeter's ease of use for beginners versus Python's flexibility for advanced customization, with a detailed learning plan for Python.

JMeterPythonautomation
0 likes · 6 min read
Choosing Between JMeter and Python for Interface Automation Testing
Tongcheng Travel Technology Center
Tongcheng Travel Technology Center
May 6, 2024 · Operations

Using smart-doc to Generate JMeter Performance Test Scripts and Integrate with Prometheus and Grafana

This article explains how to leverage smart-doc to automatically generate JMeter performance testing scripts from API code, import them into JMeter, set up Prometheus monitoring and Grafana dashboards, and highlights the automation benefits for backend development and operations workflows.

API DocumentationGrafanaJMeter
0 likes · 7 min read
Using smart-doc to Generate JMeter Performance Test Scripts and Integrate with Prometheus and Grafana
Test Development Learning Exchange
Test Development Learning Exchange
Mar 4, 2024 · Operations

Using BeanShell in Apache JMeter for Complex E‑commerce Test Scenarios

This article explains how to use BeanShell within Apache JMeter to create custom pre‑processor, post‑processor, and sampler scripts for complex e‑commerce testing, detailing step‑by‑step procedures and providing multiple practical code examples such as extracting JSON fields, generating order IDs, and managing authentication tokens.

BeanShellJMeterPerformance Testing
0 likes · 8 min read
Using BeanShell in Apache JMeter for Complex E‑commerce Test Scenarios
Code Ape Tech Column
Code Ape Tech Column
Nov 20, 2023 · Backend Development

Using Project Loom Virtual Threads in Spring Boot with JMeter Load Testing

This article demonstrates how to integrate Project Loom virtual threads into a Spring Boot application, configure Maven and Tomcat, implement REST endpoints, run JMeter load tests, and compare response times between traditional and virtual threads to showcase significant performance improvements.

JMeterPerformance TestingProject Loom
0 likes · 8 min read
Using Project Loom Virtual Threads in Spring Boot with JMeter Load Testing
Code Ape Tech Column
Code Ape Tech Column
Jul 25, 2023 · Backend Development

High‑Concurrency Seckill Implementation in SpringBoot: Locking Strategies and Performance Testing

This article demonstrates how to simulate a high‑concurrency flash‑sale scenario using SpringBoot, MySQL and JMeter, analyzes why naive lock‑and‑transaction code causes overselling, and presents six refined solutions—including controller‑level locking, AOP locking, pessimistic and optimistic database locks, and queue‑based approaches—along with performance test results.

AOPHigh ConcurrencyJMeter
0 likes · 20 min read
High‑Concurrency Seckill Implementation in SpringBoot: Locking Strategies and Performance Testing
360 Tech Engineering
360 Tech Engineering
May 16, 2023 · Backend Development

Comparison of Automated API Testing Frameworks and Their Application

This article introduces the concept and necessity of automated API testing, outlines typical usage scenarios, and provides a detailed comparison of four popular frameworks—Postman + Newman, JMeter + Ant, HttpRunner + Request, and pytest + Request—covering their features, advantages, drawbacks, requirements, and integration steps.

API testingCI/CDHttpRunner
0 likes · 15 min read
Comparison of Automated API Testing Frameworks and Their Application
Efficient Ops
Efficient Ops
May 12, 2023 · Operations

Designing an Intelligent Performance Testing Platform: From Vision to Implementation

This article describes how a bank’s IT team transformed its performance testing by defining intelligent platform capabilities, designing a modular architecture, and implementing features such as automated risk identification, smart test case generation, data synthesis, multi‑protocol support, chaos injection, and automated result analysis using JMeter, Prometheus, and custom plugins.

Chaos EngineeringJMeterPerformance Testing
0 likes · 11 min read
Designing an Intelligent Performance Testing Platform: From Vision to Implementation
360 Quality & Efficiency
360 Quality & Efficiency
Mar 31, 2023 · Operations

Setting Up JMeter for Windows GUI, Distributed, and CLI Load Testing

This guide explains how to install JMeter on Windows, configure GUI, distributed, and CLI modes, adjust Java and JMeter properties, run load tests, view results, and clean up, providing step‑by‑step instructions and command‑line examples for effective performance testing.

CLIDistributed TestingJMeter
0 likes · 11 min read
Setting Up JMeter for Windows GUI, Distributed, and CLI Load Testing
360 Quality & Efficiency
360 Quality & Efficiency
Mar 24, 2023 · Operations

Performance Testing and Optimization of a Web Application Using JMeter and BlazeMeter

This article details a comprehensive performance testing workflow—including requirement analysis, script recording with BlazeMeter, data construction, iterative optimization, and final results—targeting a web application that must handle over 5,000 TPS with 2 million database records, highlighting bottlenecks in Redis, MySQL, and code logic.

JMeterMySQLPerformance Testing
0 likes · 7 min read
Performance Testing and Optimization of a Web Application Using JMeter and BlazeMeter