Tagged articles
15 articles
Page 1 of 1
Top Architect
Top Architect
Feb 12, 2026 · Fundamentals

What’s New in Maven 4? Model Upgrade, Flattened POMs, and Parallel Builds

Maven 4, released at the end of 2025, introduces a 4.1.0 POM model, separates build and consumer POMs to flatten dependencies, adds explicit classpath‑jar and module‑jar artifact types, renames modules to subprojects, and implements a tree‑based lifecycle for true parallel builds, all while remaining backward compatible.

ArtifactPOMParallel
0 likes · 10 min read
What’s New in Maven 4? Model Upgrade, Flattened POMs, and Parallel Builds
dbaplus Community
dbaplus Community
Dec 21, 2025 · Databases

How to Slash MySQL Master‑Slave Lag from Seconds to Milliseconds with Parallel Replication

This article explains why MySQL replication lag hurts performance, then details a three‑layer parallel replication strategy—including logical‑clock parallelism, binlog group‑commit tuning, and slave‑side optimizations—provides full my.cnf configurations, performance test results, monitoring commands, utility scripts, common pitfalls, and a summary of the achieved improvements.

ParallelTuningmysql
0 likes · 7 min read
How to Slash MySQL Master‑Slave Lag from Seconds to Milliseconds with Parallel Replication
Liangxu Linux
Liangxu Linux
Nov 3, 2024 · Operations

10 Powerful cURL Tricks Every Developer Should Know

This article showcases over ten practical cURL examples—including filename globbing, configuration files, parallel requests, output formatting, testing, the trurl utility, data upload, and support for various protocols—demonstrating how the versatile tool can streamline networking, debugging, and automation tasks for developers and ops engineers.

JSONNetworkingParallel
0 likes · 13 min read
10 Powerful cURL Tricks Every Developer Should Know
Open Source Tech Hub
Open Source Tech Hub
Mar 12, 2024 · Backend Development

How I Cut a 1‑Billion‑Row PHP Parser from 25 Minutes to 27 Seconds

This article walks through a step‑by‑step performance engineering journey for the 1 billion‑row challenge in PHP, starting with a naïve CSV parser, replacing fgetcsv with fgets, applying reference operators, type casting, enabling JIT, and finally using multithreaded parallel processing to shrink runtime from 25 minutes to under 30 seconds.

1BRCJITParallel
0 likes · 13 min read
How I Cut a 1‑Billion‑Row PHP Parser from 25 Minutes to 27 Seconds
Programmer DD
Programmer DD
Oct 26, 2019 · Backend Development

Java Stream vs For Loop: Which Is Faster? A Performance Benchmark

This article benchmarks Java 8 Stream against traditional for‑loops across primitive, object, and complex‑object scenarios, revealing that while for‑loops excel on simple primitive tasks, parallel Stream often outperforms both sequential Stream and loops, especially on multi‑core systems.

CollectionsJunitPerfParallel
0 likes · 8 min read
Java Stream vs For Loop: Which Is Faster? A Performance Benchmark
dbaplus Community
dbaplus Community
Jun 5, 2019 · Databases

Boost Oracle Hierarchical Query Performance: Filtering, CBO, and Parallel Strategies

This article examines common performance pitfalls in Oracle hierarchical (CONNECT BY) queries, compares filtering after tree generation versus during traversal, explains why CBO estimates can be wildly inaccurate, and demonstrates how to rewrite queries with pipelined table functions and parallel hints for dramatic speed gains.

CBOHierarchical QueryOracle
0 likes · 9 min read
Boost Oracle Hierarchical Query Performance: Filtering, CBO, and Parallel Strategies
ITPUB
ITPUB
Jul 11, 2018 · Operations

Parallelizing Bash Loops Without Extra Tools: Practical Shell Techniques

This article explains how Linux administrators can replace slow serial shell loops with concurrent executions using background processes, simulated queues, and FIFO pipes, providing step‑by‑step scripts, performance comparisons, and practical guidelines to control process counts safely.

BashOperationsParallel
0 likes · 10 min read
Parallelizing Bash Loops Without Extra Tools: Practical Shell Techniques
Liulishuo Tech Team
Liulishuo Tech Team
Jun 3, 2016 · Backend Development

Understanding Ruby Multithreading and Multiprocessing

This article explains the differences between Ruby threads and processes, when to use each for performance gains, illustrates practical scenarios, and provides code examples for simple multithreading, multiprocessing, and using the Parallel gem.

GILParallelRuby
0 likes · 11 min read
Understanding Ruby Multithreading and Multiprocessing