Tagged articles
13 articles
Page 1 of 1
Java Architect Essentials
Java Architect Essentials
Apr 15, 2026 · Backend Development

Spring 7.0.4: Hidden Deadlock Fix and 30‑50% Startup Boost for K8s Apps

The article analyzes a nondeterministic deadlock bug in Spring 7.0.0‑7.0.3 that surfaces in Kubernetes pods, explains how Spring 7.0.4 resolves it with a revised shutdown state machine, details additional performance‑related fixes and new features, and provides practical upgrade guidance based on JDK version and deployment scenario.

BugFixJavaKubernetes
0 likes · 14 min read
Spring 7.0.4: Hidden Deadlock Fix and 30‑50% Startup Boost for K8s Apps
ZhongAn Tech Team
ZhongAn Tech Team
Sep 1, 2023 · Backend Development

Investigation and Fix of OpenTelemetry ThreadPool Trace Propagation Bug in Non‑Capturing Lambda Scenarios

This article analyzes a sporadic loss of trace information when using OpenTelemetry’s non‑capturing lambda tasks in a Java ThreadPoolExecutor, explains the underlying cause related to Runnable reuse and lambda caching, and presents the community‑driven patches that correctly propagate context across threads.

BugFixJavaLambda
0 likes · 10 min read
Investigation and Fix of OpenTelemetry ThreadPool Trace Propagation Bug in Non‑Capturing Lambda Scenarios
Laravel Tech Community
Laravel Tech Community
Jan 31, 2023 · Databases

Redis 7.0.8 Released with Security and Bug Fixes

Redis version 7.0.8 has been released, addressing critical security vulnerabilities (CVE-2022-35977 and CVE-2023-22458) and fixing several bugs related to command handling, incremental rehashing, timeout blocking, and sentinel IP changes, with a full changelog available on GitHub.

BugFixVersion7.0.8database
0 likes · 2 min read
Redis 7.0.8 Released with Security and Bug Fixes
JavaScript
JavaScript
Oct 11, 2022 · Frontend Development

Axios v1.1.0 Bug Causes TypeError – Upgrade to v1.1.1/1.1.2 Now

A recent Axios v1.1.0 release introduced a critical bug where calling axios.get triggers a TypeError, breaking most requests, but the issue has been resolved in the subsequent v1.1.1 and v1.1.2 patches, so developers should promptly update to the latest version.

BugFixaxiosupgrade
0 likes · 1 min read
Axios v1.1.0 Bug Causes TypeError – Upgrade to v1.1.1/1.1.2 Now
Laravel Tech Community
Laravel Tech Community
Jun 23, 2022 · Backend Development

Nginx 1.23.0 Mainline Release – Key Changes and Bug Fixes

Version 1.23.0 of the Nginx mainline branch introduces several internal API updates, header handling improvements, bug fixes for Vary and WWW‑Authenticate headers, SSL logging level adjustments, EPOLLRDHUP handling, and corrected caching behavior for Expires and Cache‑Control headers.

BugFixNginxWeb server
0 likes · 3 min read
Nginx 1.23.0 Mainline Release – Key Changes and Bug Fixes
JD Tech
JD Tech
Jun 20, 2022 · Backend Development

Analyzing MyBatis Query Process and Fixing a Pre‑3.4.5 foreach Variable Bug

This article examines a MyBatis bug present in versions prior to 3.4.5 by reproducing the issue, walking through the complete query execution flow from configuration parsing to result handling, identifying the root cause in foreach variable binding, and presenting official fixes and practical work‑arounds.

BugFixMyBatisORM
0 likes · 19 min read
Analyzing MyBatis Query Process and Fixing a Pre‑3.4.5 foreach Variable Bug
Liulishuo Tech Team
Liulishuo Tech Team
Sep 30, 2021 · Mobile Development

Investigation and Fix of Audio Playback Stutter on iOS 14.5 Using Audio Queue and AVPlayer

The article details a systematic investigation of intermittent audio playback stutter on iOS 14.5, tracing the issue from AVPlayer playback through Audio Queue recording, analyzing AudioStreamBasicDescription parameters and buffer size inconsistencies, and presenting a code‑level fix that aligns buffer sizes before invoking AudioConverterFillComplexBuffer.

AVPlayerAudioEncodingAudioQueue
0 likes · 12 min read
Investigation and Fix of Audio Playback Stutter on iOS 14.5 Using Audio Queue and AVPlayer