Tag

Benchmarking

1 views collected around this technical thread.

Python Programming Learning Circle
Python Programming Learning Circle
May 15, 2025 · Fundamentals

Benchmarking Python 3.11 Performance Against C++ Using Monte Carlo Pi Estimation

This article benchmarks Python 3.11's speed with a Monte Carlo Pi estimation script, compares it to earlier Python releases and a C++ implementation, shows Docker‑based testing methodology, presents performance results, and extrapolates when Python might surpass C++ in execution time.

BenchmarkingC++Docker
0 likes · 9 min read
Benchmarking Python 3.11 Performance Against C++ Using Monte Carlo Pi Estimation
FunTester
FunTester
Apr 14, 2025 · Backend Development

Common Mistakes in Go Unit Testing and How to Avoid Them

This article examines nine frequent errors developers make when writing Go unit tests—such as improper test classification, neglecting the race detector, ignoring parallel and shuffle flags, avoiding table‑driven tests, using sleep, mishandling time APIs, overlooking httptest/iotest, misusing benchmarks, and skipping fuzz testing—providing analysis and concrete code‑based solutions to improve test reliability and efficiency.

Benchmarkingconcurrencyfuzz-testing
0 likes · 11 min read
Common Mistakes in Go Unit Testing and How to Avoid Them
Python Programming Learning Circle
Python Programming Learning Circle
Apr 9, 2025 · Fundamentals

Python Code Optimization Techniques for Faster Execution

This article presents a comprehensive collection of Python performance‑boosting techniques, covering fundamental optimization principles, avoiding global variables and attribute access, eliminating unnecessary abstraction and data copying, loop optimizations, just‑in‑time compilation with numba, and selecting appropriate built‑in data structures to achieve significant speed improvements.

BenchmarkingPythonbest practices
0 likes · 15 min read
Python Code Optimization Techniques for Faster Execution
DataFunTalk
DataFunTalk
Apr 8, 2025 · Artificial Intelligence

Meta AI VP Responds to Llama 4 Controversies and Allegations of Benchmark Manipulation

Meta AI Vice President Ahmad Al‑Dahle addressed recent criticisms of the newly released Llama 4 model, denying claims of test‑set cheating, explaining quality variations as post‑release optimization, and acknowledging internal concerns that led to staff resignations and calls for transparency.

Artificial IntelligenceBenchmarkingLlama 4
0 likes · 5 min read
Meta AI VP Responds to Llama 4 Controversies and Allegations of Benchmark Manipulation
Xiaokun's Architecture Exploration Notes
Xiaokun's Architecture Exploration Notes
Apr 6, 2025 · Operations

Mastering Performance Testing: Why It Matters and How to Use wrk Effectively

This article explains what performance testing is, why it is essential for reliable systems, outlines practical steps for conducting effective tests, and introduces the wrk benchmarking tool as a lightweight solution for generating realistic load and measuring key performance metrics.

Benchmarkingload testingoperations
0 likes · 2 min read
Mastering Performance Testing: Why It Matters and How to Use wrk Effectively
DataFunSummit
DataFunSummit
Feb 25, 2025 · Artificial Intelligence

Tiny‑R1‑32B‑Preview: A 5% Parameter Model Matching Deepseek‑R1‑671B Performance

On February 24, 2025, 360 and Peking University unveiled Tiny‑R1‑32B‑Preview, a medium‑scale inference model that uses only 5% of the parameters yet achieves performance comparable to the 671‑billion‑parameter Deepseek‑R1, with leading results on math, programming, and scientific benchmarks.

AI modelBenchmarkingModel Distillation
0 likes · 7 min read
Tiny‑R1‑32B‑Preview: A 5% Parameter Model Matching Deepseek‑R1‑671B Performance
Test Development Learning Exchange
Test Development Learning Exchange
Oct 11, 2024 · Fundamentals

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

This article provides a comprehensive overview of performance testing fundamentals, covering core concepts, key metrics, common testing tools, test design, load generation, result analysis, bottleneck identification, optimization techniques, cloud and micro‑service testing, monitoring, reporting, challenges, and cost‑benefit considerations.

BenchmarkingStress Testingload testing
0 likes · 12 min read
Fundamentals of Performance Testing: Concepts, Metrics, Tools, and Best Practices
Python Programming Learning Circle
Python Programming Learning Circle
Jul 17, 2024 · Fundamentals

Simple Techniques to Speed Up Python For Loops by Up to 970×

This article demonstrates a collection of straightforward Python performance tricks—such as list comprehensions, external length calculation, set usage, loop skipping, code inlining, generators, map(), memoization, vectorization, filterfalse, and string joining—that together can accelerate for‑loops from modest 1.3× gains to dramatic 970× speed‑ups, with detailed benchmark results and code examples.

BenchmarkingPythoncode
0 likes · 15 min read
Simple Techniques to Speed Up Python For Loops by Up to 970×
php中文网 Courses
php中文网 Courses
Jun 25, 2024 · Backend Development

Improving PHP Performance with OPcache: Benchmarks, Configuration, and Deployment Strategies

This article examines how enabling and tuning OPcache can dramatically boost PHP request throughput, presents benchmark results before and after optimization, discusses configuration trade‑offs, and outlines safe deployment and cache‑clearing strategies for high‑traffic backend systems.

BenchmarkingDeploymentOpCache
0 likes · 8 min read
Improving PHP Performance with OPcache: Benchmarks, Configuration, and Deployment Strategies
Spring Full-Stack Practical Cases
Spring Full-Stack Practical Cases
Jun 25, 2024 · Backend Development

Master Java Performance Testing with JMH: From Setup to Advanced Benchmarks

This article introduces JMH, explains why it outperforms simple loops or other tools, and provides step‑by‑step Maven setup, benchmark creation, execution, and advanced annotations such as @Warmup, @Fork, @Setup, Blackhole usage, and SpringBoot integration for accurate Java micro‑benchmarking.

BenchmarkingJMHJava
0 likes · 12 min read
Master Java Performance Testing with JMH: From Setup to Advanced Benchmarks
FunTester
FunTester
Apr 15, 2024 · Fundamentals

Using JMH to Benchmark GUID Generation Strategies in Java

This article introduces JMH, explains its key features, and presents microbenchmark results comparing thread‑exclusive, thread‑shared, Snowflake, UUID, and Snowflake‑algorithm GUID generation methods under various thread counts, accompanied by the full Java test code.

BenchmarkingGUIDJMH
0 likes · 8 min read
Using JMH to Benchmark GUID Generation Strategies in Java
Architects' Tech Alliance
Architects' Tech Alliance
Aug 11, 2023 · Fundamentals

Survey of General CPU Performance Benchmarking and Emerging Trends (2023)

This article reviews the evolution of mainstream CPU performance benchmarks such as SPEC and TPC, compares their methodologies and tools, discusses challenges in evaluating heterogeneous CPUs, and outlines future research directions, providing a comprehensive overview for researchers and practitioners.

BenchmarkingCPUSPEC
0 likes · 10 min read
Survey of General CPU Performance Benchmarking and Emerging Trends (2023)
Top Architect
Top Architect
Apr 19, 2023 · Backend Development

Using JMH for Java Microbenchmarking: Demo Project, Annotations and Result Analysis

This article explains why simple timing is unreliable in Java due to JIT compilation, introduces the official JMH tool for microbenchmarking, outlines best‑practice tips, demonstrates how to set up a Maven project, write benchmark code, run tests, interpret results, and details each JMH annotation.

AnnotationsBenchmarkingJMH
0 likes · 14 min read
Using JMH for Java Microbenchmarking: Demo Project, Annotations and Result Analysis
Architect's Tech Stack
Architect's Tech Stack
Feb 16, 2023 · Backend Development

A Comprehensive Guide to Java Microbenchmarking with JMH

This article introduces Java Microbenchmark Harness (JMH), explains why warm‑up is necessary, details common annotations, shows how to set up a Maven project, provides a complete benchmark example comparing LinkedList iteration methods, and demonstrates how to run and interpret the results.

BenchmarkingJMHJava
0 likes · 13 min read
A Comprehensive Guide to Java Microbenchmarking with JMH
Top Architect
Top Architect
Nov 19, 2022 · Operations

Guidelines for Sizing and Benchmarking Elasticsearch Clusters

This article provides a comprehensive guide on allocating hardware resources, calculating cluster size based on data volume, and conducting index and search benchmark tests for Elasticsearch, offering practical formulas, test configurations, and performance conclusions to help engineers design stable, high‑throughput clusters.

BenchmarkingCluster Sizingbackend
0 likes · 12 min read
Guidelines for Sizing and Benchmarking Elasticsearch Clusters
Architecture Digest
Architecture Digest
Oct 21, 2022 · Operations

Benchmarking and Sizing Your Elasticsearch Cluster for Logs and Metrics

This article explains how to assess hardware resources, calculate required Elasticsearch cluster size based on data volume, and perform indexing and search benchmark tests to ensure stable performance and optimal throughput for log and metric workloads in production environments.

BenchmarkingCluster SizingLogs
0 likes · 10 min read
Benchmarking and Sizing Your Elasticsearch Cluster for Logs and Metrics
Top Architect
Top Architect
Oct 9, 2022 · Backend Development

JMH – Java Microbenchmark Harness: Introduction, Demo, and Annotation Guide

This article introduces JMH, the official Java microbenchmarking tool, explains why warm‑up is needed, shows how to build a Maven project, provides a complete LinkedList iteration benchmark example, demonstrates common JMH annotations, and outlines how to run and interpret benchmark results.

AnnotationsBenchmarkingJMH
0 likes · 16 min read
JMH – Java Microbenchmark Harness: Introduction, Demo, and Annotation Guide
FunTester
FunTester
Jun 24, 2022 · Operations

Performance Testing Resource Collection

A comprehensive catalog of performance testing articles ranging from Linux monitoring tools and test frameworks to concurrency utilities, distributed load testing strategies, QPS modeling and language-specific benchmark studies, providing developers with practical insights and techniques for optimizing system performance.

Benchmarkingconcurrencydistributed systems
0 likes · 6 min read
Performance Testing Resource Collection
DataFunTalk
DataFunTalk
Jun 17, 2022 · Artificial Intelligence

Issues with Recommender System Benchmarks and Insights from the BARS Paper

This article examines the shortcomings of current recommender system benchmarks, explains why standardized datasets and metrics are essential, and highlights key findings from the recent BARS paper that propose a more open and reproducible benchmarking framework for recommendation research.

AIBARSBenchmarking
0 likes · 6 min read
Issues with Recommender System Benchmarks and Insights from the BARS Paper
FunTester
FunTester
Feb 27, 2022 · Operations

Performance Testing Articles Collection (Chinese Resources)

This collection compiles dozens of Chinese articles on performance testing, covering tools, frameworks, case studies, and techniques such as netdata monitoring, load generators, concurrency utilities, distributed testing, QPS modeling, and comparisons of JMeter, K6, Gatling, and FunTester.

Benchmarkingdistributed systemsload testing
0 likes · 8 min read
Performance Testing Articles Collection (Chinese Resources)