Tagged articles
321 articles
Page 1 of 4
IT Services Circle
IT Services Circle
May 20, 2026 · Databases

Why Can Redis Sustain Over 100k QPS? A Deep Technical Dive

The article explains how Redis achieves more than 100,000 queries per second by leveraging in‑memory storage, highly optimized data structures, a single‑threaded core with epoll‑based I/O multiplexing, optional I/O multithreading, and performance tricks such as pipelining and careful key sizing.

Data StructuresI/O MultiplexingIn-Memory Database
0 likes · 9 min read
Why Can Redis Sustain Over 100k QPS? A Deep Technical Dive
Data Party THU
Data Party THU
May 19, 2026 · Artificial Intelligence

Model Performance Lagging? Master Feature Engineering with a Complete Step‑by‑Step Guide

This article walks through the entire feature‑engineering pipeline—data cleaning, missing‑value imputation, encoding, outlier handling, scaling, feature construction, and selection—using Pandas and Scikit‑learn, and shows how to wrap the steps into a reproducible Scikit‑learn Pipeline.

Pipelinedata preprocessingfeature engineering
0 likes · 9 min read
Model Performance Lagging? Master Feature Engineering with a Complete Step‑by‑Step Guide
DeepHub IMBA
DeepHub IMBA
May 12, 2026 · Artificial Intelligence

Hands‑On Feature Engineering with Pandas and Scikit‑Learn: Complete Code Walkthrough

This article walks through a full feature‑engineering pipeline using Pandas and Scikit‑Learn, covering data inspection, missing‑value imputation, categorical encoding, outlier handling, scaling, feature construction, selection, and a final Pipeline that prepares clean, predictive features for a logistic‑regression model.

Pipelinedata preprocessingfeature engineering
0 likes · 9 min read
Hands‑On Feature Engineering with Pandas and Scikit‑Learn: Complete Code Walkthrough
Su San Talks Tech
Su San Talks Tech
May 9, 2026 · Databases

Why Can Redis Handle Over 100,000 QPS? A Deep Technical Breakdown

Redis can sustain over 100,000 queries per second thanks to four key pillars—memory‑first storage, highly optimized data structures like SDS and skip lists, a single‑threaded event loop with epoll multiplexing, and multi‑core I/O threading—each explained with benchmarks, code samples, and real‑world comparisons.

Data StructuresIO MultiplexingPipeline
0 likes · 10 min read
Why Can Redis Handle Over 100,000 QPS? A Deep Technical Breakdown
James' Growth Diary
James' Growth Diary
May 4, 2026 · Artificial Intelligence

Choosing the Right Multi‑Agent Collaboration Pattern: Supervisor, Swarm, Mesh, or Pipeline

When a single LLM agent can’t handle research, writing, and fact‑checking simultaneously, the article breaks down four multi‑agent collaboration patterns—Supervisor, Swarm, Pipeline, and Mesh—detailing their architectures, code examples, pros, cons, suitable scenarios, and common pitfalls to help you pick the best fit.

LangGraphMulti-AgentPipeline
0 likes · 21 min read
Choosing the Right Multi‑Agent Collaboration Pattern: Supervisor, Swarm, Mesh, or Pipeline
AI Architect Hub
AI Architect Hub
Apr 24, 2026 · Artificial Intelligence

RAG Level 1: Avoid Dirty Data Poisoning Your AI – A Data Cleaning Guide

This article explains why noisy documents cripple Retrieval‑Augmented Generation, enumerates common garbage data types, describes three typical data‑quality problems, warns against over‑cleaning, encoding, and regex pitfalls, and provides a configurable LangChain pipeline with deduplication and validation best practices.

AIEmbeddingLangChain
0 likes · 21 min read
RAG Level 1: Avoid Dirty Data Poisoning Your AI – A Data Cleaning Guide
AI Step-by-Step
AI Step-by-Step
Apr 6, 2026 · Artificial Intelligence

Why Single Agents Fail: Embracing Multi‑Agent Microservice Architecture

When a single AI agent’s logic hits bottlenecks, the article explains how breaking responsibilities into bounded microservice agents, using pipelines for deterministic steps and supervisors for dynamic routing, yields clearer contracts, shared state, easier debugging, and more stable, scalable task execution.

AI ArchitectureAgent FrameworksMicroservices
0 likes · 12 min read
Why Single Agents Fail: Embracing Multi‑Agent Microservice Architecture
Shuge Unlimited
Shuge Unlimited
Apr 5, 2026 · Artificial Intelligence

How Claude Code’s Speculation Engine Lets AI Finish Your Code Before You Hit Tab

The article dissects Claude Code’s Speculation system, showing how an AI sub‑agent predicts user intent, runs a full edit‑test pipeline in an overlay filesystem, filters results through twelve safety layers, and only commits changes when the user confirms, effectively turning speculative execution into a safe performance boost.

AI AgentClaude CodeCopy-on-Write
0 likes · 21 min read
How Claude Code’s Speculation Engine Lets AI Finish Your Code Before You Hit Tab
Java One
Java One
Mar 28, 2026 · Artificial Intelligence

Five Core Design Patterns for Building Robust AI Agents with Google ADK

This guide translates Google Cloud Tech's Agent Skills design patterns, detailing five reusable architecture patterns—Tool Wrapper, Generator, Reviewer, Inversion, and Pipeline—that help developers create modular, maintainable, and composable AI agents using the Agent Development Kit (ADK).

AI AgentDesign PatternsGoogle ADK
0 likes · 16 min read
Five Core Design Patterns for Building Robust AI Agents with Google ADK
DeWu Technology
DeWu Technology
Mar 9, 2026 · Backend Development

How We Engineered a Scalable Regression Testing Pipeline for a High‑Frequency C++ Search Engine

This article details the motivation, design, and implementation of a systematic regression testing framework for a high‑frequency C++ search engine, covering traffic recording, DIFF testing, one‑click load testing, pipeline integration, and future automation plans to match rapid iteration cycles.

C++ search engineDIFF testingLoad Testing
0 likes · 11 min read
How We Engineered a Scalable Regression Testing Pipeline for a High‑Frequency C++ Search Engine
php Courses
php Courses
Feb 25, 2026 · Fundamentals

Can Functional Pipelines Transform Regex Construction? A Builder Approach

By applying functional and pipeline programming concepts to regex creation, developers can replace unreadable string literals with composable components, enabling clearer, maintainable patterns, dynamic construction, and modular management of character classes, quantifiers, lookaheads, and backreferences, while highlighting the method's strengths and limitations.

Builder PatternCode GenerationPipeline
0 likes · 7 min read
Can Functional Pipelines Transform Regex Construction? A Builder Approach
Code Mala Tang
Code Mala Tang
Feb 21, 2026 · Backend Development

10 Common Pitfalls When Streaming JSON in Node.js and Safer Patterns

This guide enumerates ten frequent traps encountered when streaming JSON in Node.js—such as assuming one chunk per object, UTF‑8 split issues, missing newline delimiters, back‑pressure overload, and handling of large numbers—and presents reliable patterns like using NDJSON framing, StringDecoder, pipeline, and proper error handling to avoid data loss and memory spikes.

JSONNDJSONNode.js
0 likes · 13 min read
10 Common Pitfalls When Streaming JSON in Node.js and Safer Patterns
Architect
Architect
Jan 7, 2026 · Databases

Why Did Redis Suddenly Evict Keys? A Deep Dive into Memory, Pipelines, and Client Buffers

This article walks through a production incident where Redis began returning missing keys, detailing the step‑by‑step diagnosis—from monitoring logs and TTL checks to discovering memory spikes caused by client‑output‑buffer‑limit overflow and pipeline traffic—followed by emergency and permanent remediation measures.

MemoryPipelineclient-output-buffer-limit
0 likes · 11 min read
Why Did Redis Suddenly Evict Keys? A Deep Dive into Memory, Pipelines, and Client Buffers
Alibaba Cloud Developer
Alibaba Cloud Developer
Dec 22, 2025 · Artificial Intelligence

Turning Real‑Time Hotspot Detection into AI‑Powered E‑Commerce Recommendations

Traditional recommendation systems lag behind fast‑moving external trends, missing the freshness and surprise users crave. This article details an end‑to‑end AI pipeline that perceives, understands, and reacts to hotspots within hours, automatically generating high‑quality product selections and continuously optimizing through feedback loops.

AI recommendationAutomationLLM
0 likes · 25 min read
Turning Real‑Time Hotspot Detection into AI‑Powered E‑Commerce Recommendations
Open Source Tech Hub
Open Source Tech Hub
Nov 20, 2025 · Backend Development

What’s New in PHP 8.5? 10 Game‑Changing Features You Must Try

PHP 8.5 introduces a suite of powerful enhancements—including the pipeline operator, native array_first/array_last functions, a new URI extension, closure recursion support, constant expression closures, fatal error backtraces, INI diff mode, #[NoDiscard] attribute, clone overrides, and a build‑date constant—plus four key deprecations.

8.5New FeaturesPipeline
0 likes · 8 min read
What’s New in PHP 8.5? 10 Game‑Changing Features You Must Try
Ray's Galactic Tech
Ray's Galactic Tech
Nov 18, 2025 · Operations

Master Enterprise‑Grade GitLab CI/CD: From Zero to Full Automation

This guide walks you through building a complete, production‑ready GitLab CI/CD automation system—from installing and registering runners, crafting multi‑stage .gitlab-ci.yml pipelines, implementing multi‑environment deployments, applying enterprise security practices, to optimizing performance and configuring automated rollbacks and notifications.

AutomationDeploymentDevOps
0 likes · 11 min read
Master Enterprise‑Grade GitLab CI/CD: From Zero to Full Automation
Tech Freedom Circle
Tech Freedom Circle
Nov 16, 2025 · Databases

How Redis Pipeline Can Boost Performance 3‑12× and Impress Interviewers

This article explains Redis Pipeline’s core principle of batching commands to reduce network round‑trips, presents benchmark data showing up to 17‑fold speedups, details real‑world use cases such as cache warm‑up, heartbeat reporting, and high‑traffic events, and provides best‑practice guidelines on batch sizing, error handling, cluster constraints, and comparisons with transactions and Lua scripts.

Batch ProcessingBenchmarkDistributed Systems
0 likes · 36 min read
How Redis Pipeline Can Boost Performance 3‑12× and Impress Interviewers
Raymond Ops
Raymond Ops
Nov 2, 2025 · Operations

Master Jenkins: From Setup to CI/CD Pipelines and User Management

This comprehensive guide walks you through Jenkins' history, installation, configuration, plugin management, user permissions, parameterized builds, pipeline scripting, and email notifications, providing step‑by‑step commands, code snippets, and troubleshooting tips for setting up a robust CI/CD environment on Linux.

DockerJenkinsLinux
0 likes · 18 min read
Master Jenkins: From Setup to CI/CD Pipelines and User Management
Advanced AI Application Practice
Advanced AI Application Practice
Oct 25, 2025 · Operations

Mastering Jenkins for API Automation: Core Concepts and CI/CD Practices

This article explains Jenkins' fundamental concepts—including jobs, nodes, pipelines, plugins, and credentials—and shows why its powerful scheduling, rich ecosystem, stability, and pipeline‑as‑code approach make it ideal for building automated API testing CI/CD workflows, illustrated with a complete Jenkinsfile example.

API testingAutomationDevOps
0 likes · 7 min read
Mastering Jenkins for API Automation: Core Concepts and CI/CD Practices
Su San Talks Tech
Su San Talks Tech
Oct 13, 2025 · Databases

Boost High-Concurrency Performance with Redis Batch Query Techniques

This article explores four powerful Redis batch query methods—MGET, HMGET, pipeline, and Lua scripting—detailing their advantages, usage examples in Spring Boot, and practical considerations such as network latency reduction, client simplification, transaction performance, and atomic execution to enhance system efficiency under high-concurrency workloads.

LuaMGETPipeline
0 likes · 11 min read
Boost High-Concurrency Performance with Redis Batch Query Techniques
Code Mala Tang
Code Mala Tang
Oct 8, 2025 · Artificial Intelligence

Quickly Add NLP to Node Apps with Hugging Face Transformers.js

This tutorial shows how to integrate Hugging Face's open‑source Transformers.js library into Node.js projects, covering setup, the Pipeline API, and practical code examples for sentiment analysis, zero‑shot classification, text generation, translation, and question answering, while also discussing when to prefer Python alternatives.

NLPPipelineTransformers.js
0 likes · 15 min read
Quickly Add NLP to Node Apps with Hugging Face Transformers.js
Wu Shixiong's Large Model Academy
Wu Shixiong's Large Model Academy
Sep 18, 2025 · Artificial Intelligence

How to Diagnose and Optimize RAG Systems When 30% Answers Miss the Mark

This guide explains why RAG systems often produce off‑topic answers, outlines how to measure hit‑rate, retrieval, reranking and generation metrics, provides step‑by‑step evaluation pipelines, code examples, real‑world case studies, and interview‑ready templates for diagnosing and optimizing each stage of the pipeline.

AIGenerationPipeline
0 likes · 18 min read
How to Diagnose and Optimize RAG Systems When 30% Answers Miss the Mark
AndroidPub
AndroidPub
Sep 18, 2025 · Operations

How to Build an Automated Jenkins CI/CD Pipeline for Android APK Packaging

Learn how to create a standardized Jenkins CI/CD pipeline that automates Android APK building, uploading to Pgyer, and notifying teams via DingTalk, eliminating manual errors, speeding delivery, and improving collaboration across development, testing, and product teams.

AndroidAutomationDingTalk
0 likes · 33 min read
How to Build an Automated Jenkins CI/CD Pipeline for Android APK Packaging
Data STUDIO
Data STUDIO
Sep 5, 2025 · Artificial Intelligence

19 Elegant Sklearn Tricks for More Efficient Machine Learning

This article presents 19 practical Sklearn functions—ranging from outlier detection to hyper‑parameter search—that replace manual data‑science steps, each illustrated with concise code examples and performance comparisons.

Model EvaluationPipelinedata preprocessing
0 likes · 24 min read
19 Elegant Sklearn Tricks for More Efficient Machine Learning
Lin is Dream
Lin is Dream
Aug 25, 2025 · Backend Development

How to Build a Mini‑Netty Pipeline that Decouples Decoding from Business Logic

This article explains how to redesign a Java NIO server by introducing a Netty‑style pipeline that separates decoding, logging, authentication, and business handling into independent handlers, improving extensibility, maintainability, and performance while providing complete sample code and initialization steps.

Design PatternsHandlerJava
0 likes · 15 min read
How to Build a Mini‑Netty Pipeline that Decouples Decoding from Business Logic
Ops Development & AI Practice
Ops Development & AI Practice
Aug 24, 2025 · Operations

How to Unlock Parallel Job Execution in GitLab Runner

This guide explains why parallel task handling matters for CI/CD efficiency, details the core 'concurrent' setting in GitLab Runner's config.toml, shows step‑by‑step configuration across platforms, and demonstrates how to combine it with the .gitlab-ci.yml 'parallel' keyword for fine‑grained job scheduling.

GitLab RunnerOperationsPipeline
0 likes · 7 min read
How to Unlock Parallel Job Execution in GitLab Runner
MaGe Linux Operations
MaGe Linux Operations
Aug 22, 2025 · Operations

Master Jenkins Pipelines: Enterprise‑Level CI/CD from Basics to Advanced Practices

This comprehensive guide walks DevOps engineers through the essential concepts, advanced techniques, and best‑practice patterns for building robust, secure, and scalable Jenkins Pipelines, covering declarative vs scripted syntax, agent configuration, multi‑environment deployments, blue‑green releases, performance monitoring, security hardening, fault recovery, and real‑world code examples.

JenkinsPipelineci/cd
0 likes · 17 min read
Master Jenkins Pipelines: Enterprise‑Level CI/CD from Basics to Advanced Practices
AI Algorithm Path
AI Algorithm Path
Jul 20, 2025 · Artificial Intelligence

How to Build an Open‑Set Object Detection Workflow: A Comprehensive Guide

This article presents a step‑by‑step agentic object detection pipeline that combines open‑vocabulary detectors such as Grounding‑DINO with visual language models (GPT‑4o, o1) for concept extraction, critique, refinement, and validation, complete with code snippets, design rationale, and real‑world examples.

Grounding DINOPipelinePython
0 likes · 33 min read
How to Build an Open‑Set Object Detection Workflow: A Comprehensive Guide
Python Programming Learning Circle
Python Programming Learning Circle
Jul 8, 2025 · Artificial Intelligence

10 One‑Line Python Tricks to Jump‑Start Your Machine Learning Projects

This article presents ten concise, practical one‑line Python code snippets—ranging from loading CSV data with Pandas to building sophisticated Scikit‑learn pipelines—that streamline common machine‑learning tasks such as data cleaning, encoding, splitting, scaling, model training, evaluation, cross‑validation, and prediction.

PipelinePythondata preprocessing
0 likes · 10 min read
10 One‑Line Python Tricks to Jump‑Start Your Machine Learning Projects
php Courses
php Courses
Jul 4, 2025 · Operations

Automate PHP Deployment with Jenkins Pipeline: Step-by-Step Guide

Learn how to set up Jenkins Pipeline for continuous integration and deployment of PHP applications, covering prerequisite installations, plugin configuration, Jenkinsfile creation with stages for checkout, build, test, and deploy, and executing the pipeline to automate packaging and deployment.

AutomationJenkinsPHP
0 likes · 5 min read
Automate PHP Deployment with Jenkins Pipeline: Step-by-Step Guide
DevOps Engineer
DevOps Engineer
Jun 5, 2025 · Operations

How to Prevent Jenkins Builds from Interrupting Critical Branches

This article explains how to configure Jenkins pipelines to allow concurrent builds for most branches while ensuring that builds on devel and release branches are queued instead of being aborted, using a simple conditional abortPrevious setting and shared library logic to reduce resource waste and avoid QA disruptions.

BranchJenkinsPipeline
0 likes · 5 min read
How to Prevent Jenkins Builds from Interrupting Critical Branches
Huolala Tech
Huolala Tech
May 27, 2025 · Big Data

How HuoLala Built a Scalable Big Data Warehouse CI/CD Pipeline

This article details how HuoLala designed and implemented a standardized, automated big‑data warehouse release pipeline that integrates admission and exit checkpoints, isolates test data, and uses CI/CD practices to improve efficiency, reduce risk, and achieve near‑zero manual testing for data quality assurance.

Pipelineci/cdquality assurance
0 likes · 19 min read
How HuoLala Built a Scalable Big Data Warehouse CI/CD Pipeline
Linux Ops Smart Journey
Linux Ops Smart Journey
May 21, 2025 · Operations

Master Jenkins Pipeline Variables: Build Flexible, Maintainable CI/CD Scripts

This guide explores how to define, assign, and scope variables in Jenkins Pipelines—including environment, params, and direct assignments—through clear explanations, practical code snippets, and a real-world Kubernetes multi-container project, showing how parameterized builds transform static scripts into flexible, maintainable CI/CD workflows.

DevOpsJenkinsPipeline
0 likes · 6 min read
Master Jenkins Pipeline Variables: Build Flexible, Maintainable CI/CD Scripts
Alibaba Cloud Observability
Alibaba Cloud Observability
May 19, 2025 · Cloud Native

How LoongCollector Transforms Log Collection with High‑Performance Pipelines

LoongCollector, the 2025 evolution of iLogtail, introduces a fully redesigned pipeline architecture, hot‑reload isolation, significant CPU and memory reductions, and advanced monitoring, delivering up to 80% higher log‑collection throughput for cloud‑native environments while ensuring seamless upgrades and multi‑region fault tolerance.

ObservabilityPipelinelog collection
0 likes · 14 min read
How LoongCollector Transforms Log Collection with High‑Performance Pipelines
Alibaba Cloud Developer
Alibaba Cloud Developer
May 14, 2025 · Cloud Native

How LoongCollector Redefines Log Collection: Performance, Flexibility, and Zero‑Downtime Upgrades

LoongCollector, the 2025 evolution of iLogtail, delivers a comprehensive overhaul of log collection with high‑performance C++/Go pipelines, dynamic plugin combos, hot‑reload isolation, adaptive network throttling, enhanced tag handling, seamless migration, and robust monitoring for cloud‑native environments, achieving up to 80% higher throughput while cutting CPU usage by 35% and memory by 10%.

KubernetesPerformance OptimizationPipeline
0 likes · 15 min read
How LoongCollector Redefines Log Collection: Performance, Flexibility, and Zero‑Downtime Upgrades
MaGe Linux Operations
MaGe Linux Operations
Apr 21, 2025 · Operations

Master Jenkins Automation: From Code Commit to Seamless Deployment

This guide walks you through the complete Jenkins CI/CD workflow—from source‑code changes triggering automated builds, tests, and packaging to secure deployment—showing how to set up Jenkins, configure pipelines, install essential plugins, and manage global tools for reliable, hands‑free releases.

DevOpsDockerJenkins
0 likes · 21 min read
Master Jenkins Automation: From Code Commit to Seamless Deployment
Sanyou's Java Diary
Sanyou's Java Diary
Mar 24, 2025 · Databases

Boost High‑Concurrency Performance with Redis Batch Query Techniques

This article explores why batch execution in Redis improves command efficiency, simplifies client logic, and enhances transaction performance, and then details four core batch query methods—MGET, HMGET, Pipeline, and Lua scripting—along with practical SpringBoot examples and best‑practice considerations.

Lua ScriptMGETPipeline
0 likes · 10 min read
Boost High‑Concurrency Performance with Redis Batch Query Techniques
php Courses
php Courses
Mar 11, 2025 · Operations

Using Jenkins Pipeline for Continuous Integration and Deployment of PHP Applications

This article provides a step‑by‑step guide on setting up Jenkins Pipeline to automate the continuous integration, testing, and deployment of PHP applications, covering prerequisite installations, plugin configuration, Jenkinsfile creation with stages for checkout, build, test, and deployment, and how to run the pipeline.

AutomationDevOpsJenkins
0 likes · 6 min read
Using Jenkins Pipeline for Continuous Integration and Deployment of PHP Applications
Mingyi World Elasticsearch
Mingyi World Elasticsearch
Feb 17, 2025 · Backend Development

Infinilabs Gateway Config File: A Layer‑by‑Layer Deep Dive

This article walks through the Infinilabs Gateway configuration file from top‑level environment variables down to low‑level disk queues, explaining each section—env, paths, gateway core, stats, API, Elasticsearch services, entry, router, flow, pipelines, metrics, disk queue, Badger KV, floating IP, and global elastic settings—so readers can quickly understand and customize the gateway for microservice and big‑data deployments.

BackendConfigurationElasticsearch
0 likes · 18 min read
Infinilabs Gateway Config File: A Layer‑by‑Layer Deep Dive
Code Mala Tang
Code Mala Tang
Jan 27, 2025 · Fundamentals

How to Refactor Flag‑Heavy Python Functions for Cleaner, Scalable Code

This article examines a Python function overloaded with flags, explains why such design harms readability, testability, and extensibility, and demonstrates step‑by‑step refactoring using descriptive helper functions, a pipeline approach, flexible step lists, and type annotations to produce clean, maintainable code.

PipelinePythoncode quality
0 likes · 5 min read
How to Refactor Flag‑Heavy Python Functions for Cleaner, Scalable Code
IT Architects Alliance
IT Architects Alliance
Jan 19, 2025 · Cloud Native

Mastering Cloud‑Native CI/CD: Build, Deploy, and Scale Your Pipelines

This comprehensive guide explains cloud‑native architecture fundamentals, walks through CI/CD pipeline core components, provides step‑by‑step instructions for setting up Git, Jenkins, Docker, and Kubernetes, and demonstrates advanced Tekton pipelines, while discussing benefits, challenges, and future trends.

Cloud NativeDockerJenkins
0 likes · 20 min read
Mastering Cloud‑Native CI/CD: Build, Deploy, and Scale Your Pipelines
Mingyi World Elasticsearch
Mingyi World Elasticsearch
Jan 13, 2025 · Operations

Top Logstash Interview Questions 11‑20: Answers and Practical Configurations

This article provides concise answers and example configurations for eleven common Logstash interview questions, covering HTTP input/poller plugins, the Split filter, pipeline debugging, performance monitoring with Metricbeat, Grok failure handling, secure communication, multi‑source collection, multiple outputs, differences from Elasticsearch ingest pipelines, and Kibana pipeline management.

ElasticsearchLogstashPipeline
0 likes · 7 min read
Top Logstash Interview Questions 11‑20: Answers and Practical Configurations
dbaplus Community
dbaplus Community
Dec 22, 2024 · Fundamentals

Why Row‑Major Traversal Beats Column‑Major: Unveiling Cache, Prefetch, and False‑Sharing Secrets

This article builds a practical hardware‑mind model by benchmarking Rust code to show how cache layout, prefetching, cache associativity, false sharing, pipeline stalls, and data dependencies affect the performance of row‑major versus column‑major traversals, random accesses, and multithreaded loops, and it offers concrete fixes such as cache‑line alignment.

CPU architecturePipelineRust
0 likes · 19 min read
Why Row‑Major Traversal Beats Column‑Major: Unveiling Cache, Prefetch, and False‑Sharing Secrets
php Courses
php Courses
Nov 20, 2024 · Operations

Using Jenkins Pipeline for Continuous Integration and Deployment of PHP Applications

This article provides a step‑by‑step guide on setting up Jenkins Pipeline to automate the continuous integration, testing, and deployment of PHP applications, covering prerequisite installations, plugin configuration, Jenkinsfile creation with stages for checkout, build, test, and deployment, and how to run the pipeline.

AutomationDevOpsJenkins
0 likes · 5 min read
Using Jenkins Pipeline for Continuous Integration and Deployment of PHP Applications
Efficient Ops
Efficient Ops
Sep 11, 2024 · Artificial Intelligence

How AI Large Models Can Automate DevOps Pipeline Failure Analysis

This article explores how AI large‑model technology can be integrated into DevOps pipelines to automatically detect, classify, and resolve interruption events, dramatically reducing manual troubleshooting time and improving overall software development and operations efficiency.

AIDevOpsPipeline
0 likes · 11 min read
How AI Large Models Can Automate DevOps Pipeline Failure Analysis
MaGe Linux Operations
MaGe Linux Operations
Aug 30, 2024 · Operations

Master Jenkins CI/CD: Install, Configure, and Write Declarative Pipelines

This guide introduces Jenkins as an open-source CI tool, explains continuous integration and delivery concepts, walks through Docker-based installation, and provides detailed examples of both scripted and declarative pipelines, including common directives, parameters, triggers, and best practices for effective DevOps automation.

DevOpsDockerJenkins
0 likes · 18 min read
Master Jenkins CI/CD: Install, Configure, and Write Declarative Pipelines
Alibaba Cloud Observability
Alibaba Cloud Observability
Aug 15, 2024 · Cloud Native

How LoongCollector Transforms iLogtail into a Next‑Gen Cloud‑Native Observability Agent

This article chronicles the two‑year evolution of iLogtail into LoongCollector, detailing its origins, technical milestones, community contributions, feature set—including high‑performance pipelines, programmable SPL, extensive K8s support, and unified config management—and outlines the roadmap that positions it as a leading cloud‑native observability solution.

ObservabilityPipelinecloud-native
0 likes · 19 min read
How LoongCollector Transforms iLogtail into a Next‑Gen Cloud‑Native Observability Agent
ByteDance Cloud Native
ByteDance Cloud Native
Aug 1, 2024 · Cloud Native

How to Build a Lightweight Cloud‑Native Application Release Platform with Volcengine

This article explains the challenges of constructing a robust, easy‑to‑use application release platform, introduces Volcengine's lightweight solution featuring a powerful workflow engine, rich atomic services, and pipeline templates, and provides a detailed step‑by‑step guide—including workspace creation, OAM app configuration, pipeline setup, deployment, and verification—for microservice‑based full‑link gray releases.

Continuous DeliveryKubernetesMicroservices
0 likes · 10 min read
How to Build a Lightweight Cloud‑Native Application Release Platform with Volcengine
Wukong Talks Architecture
Wukong Talks Architecture
Jul 29, 2024 · Backend Development

Understanding the Java Stream Pipeline: Implementation Principles and Execution Process

This article explains the internal workings of Java's Stream API pipeline, covering how intermediate and terminal operations are recorded, combined, and executed via stages and Sink interfaces, illustrating lazy evaluation, stateful vs stateless operations, and the mechanisms behind parallel and sequential processing.

Intermediate OperationsJavaLazy Evaluation
0 likes · 21 min read
Understanding the Java Stream Pipeline: Implementation Principles and Execution Process
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Jul 17, 2024 · Operations

Getting Started with Jenkins for Frontend Deployment: Installation, Configuration, and CI/CD Pipelines

This comprehensive guide walks front‑end developers through the evolution of deployment methods, shows how to automate builds with custom Node scripts, details step‑by‑step Jenkins installation on CentOS, explains Freestyle and Pipeline project setups, and provides practical code snippets for a fully automated CI/CD workflow.

AutomationFrontend DeploymentJenkins
0 likes · 26 min read
Getting Started with Jenkins for Frontend Deployment: Installation, Configuration, and CI/CD Pipelines
Tencent Cloud Developer
Tencent Cloud Developer
Jul 11, 2024 · Databases

LibraDB Execution Engine Architecture Evolution and Optimization

LibraDB, the column‑store replica of TDSQL MySQL, has evolved its execution engine from a simple scatter‑gather model to a vectorized SMP pipeline that integrates MPP parallelism, asynchronous I/O, SIMD‑accelerated aggregation and join operators, work‑stealing, and runtime filters, thereby fully exploiting CPU, memory, network and disk resources for both OLTP and analytical queries.

Execution EngineHash JoinMPP
0 likes · 22 min read
LibraDB Execution Engine Architecture Evolution and Optimization
Wukong Talks Architecture
Wukong Talks Architecture
Jun 27, 2024 · Operations

Jenkins Front‑End Deployment: Pipeline vs Freestyle and Core Scripts

This article explains how to use Jenkins for front‑end automated deployment, comparing Pipeline and Freestyle projects, detailing the overall architecture, step‑by‑step deployment process, core pipeline scripts for Git handling, dependency copying, building, backup, upload, update, cleanup, and email notifications.

AutomationFrontend DeploymentJenkins
0 likes · 9 min read
Jenkins Front‑End Deployment: Pipeline vs Freestyle and Core Scripts
Python Programming Learning Circle
Python Programming Learning Circle
Jun 21, 2024 · Artificial Intelligence

Using scikit-learn for Data Mining: Feature Engineering, Parallel Processing, Pipelines, and Model Persistence

This article demonstrates how to perform data mining with scikit-learn by detailing the full workflow—from data acquisition and feature engineering, through parallel and pipeline processing, to automated hyper‑parameter tuning and model persistence—using the Iris dataset as an example.

Pipelinedata miningfeature engineering
0 likes · 13 min read
Using scikit-learn for Data Mining: Feature Engineering, Parallel Processing, Pipelines, and Model Persistence
MaGe Linux Operations
MaGe Linux Operations
Jun 21, 2024 · Operations

Fix Jenkins Pipeline Errors: Plugin Updates, Maven Build Failures, Git Config

This guide walks through fixing four common Jenkins pipeline problems: replacing unreachable plugin update sites with domestic mirrors, resolving Maven build errors caused by missing server JVM libraries, clearing stale Git config lock files, and adjusting file descriptor limits on build nodes to prevent out‑of‑resource failures.

JenkinsPipelineci/cd
0 likes · 6 min read
Fix Jenkins Pipeline Errors: Plugin Updates, Maven Build Failures, Git Config
Ops Development Stories
Ops Development Stories
Jun 4, 2024 · Cloud Native

Build an Enterprise CI/CD Platform with Jenkins, Docker, and Kubernetes

This tutorial walks through using the Ruoyi project to set up a full CI/CD pipeline with Jenkins, custom Docker base images, Kubernetes deployments, and automated notifications, covering environment preparation, pipeline design, Dockerfile creation, Jenkins configuration, GitLab webhooks, and deployment verification across DEV, UAT, and PROD stages.

DevOpsDockerJenkins
0 likes · 24 min read
Build an Enterprise CI/CD Platform with Jenkins, Docker, and Kubernetes
php Courses
php Courses
May 14, 2024 · Operations

Using Jenkins Pipeline for Continuous Integration and Deployment of PHP Applications

This article provides a step‑by‑step guide on setting up Jenkins Pipeline to automate the continuous integration, testing, and deployment of PHP applications, covering prerequisite installations, plugin configuration, Jenkinsfile creation with stages for checkout, build, test, and deployment, and how to run the pipeline.

AutomationDevOpsJenkins
0 likes · 5 min read
Using Jenkins Pipeline for Continuous Integration and Deployment of PHP Applications
Alibaba Cloud Native
Alibaba Cloud Native
Apr 24, 2024 · R&D Management

Why R&D Standards Fail and How Aone Inspires Better DevOps Practices

This article examines the origins and goals of software development standards, explains why they often break down when enforced through tools, presents concrete examples of such failures, and shares insights from Alibaba's Aone platform that guide the design of a more effective DevOps‑centric R&D workflow.

AoneCloud NativeDevOps
0 likes · 27 min read
Why R&D Standards Fail and How Aone Inspires Better DevOps Practices
Alibaba Cloud Native
Alibaba Cloud Native
Apr 16, 2024 · Operations

Unlocking Log Insights: How SPL Brings Interactive Pipe‑Style Queries to Cloud‑Native Observability

This article explains how the SLS Processing Language (SPL) enables interactive, pipeline‑based log analysis in cloud‑native environments, covering the challenges of unstructured log data, Unix‑inspired exploration, SPL syntax, key commands, and practical examples for efficient querying and transformation.

Cloud NativeObservabilityPipeline
0 likes · 12 min read
Unlocking Log Insights: How SPL Brings Interactive Pipe‑Style Queries to Cloud‑Native Observability
vivo Internet Technology
vivo Internet Technology
Apr 10, 2024 · Databases

Analysis of Redis Pipeline Support in Spring Boot with Lettuce and Redisson Clients

The article examines how Spring Boot’s Lettuce and Redisson clients implement Redis pipelining, explains the batch‑request principle, benchmarks 100 000 set inserts showing pipeline speeds of 0.5–1.4 seconds versus 162 seconds for single commands, demonstrates Spring Data Redis callback usage, warns of high‑cost command pitfalls, and details Redisson’s RBatch internals, concluding that pipelining dramatically boosts throughput when command costs are modest.

JavaLettucePipeline
0 likes · 27 min read
Analysis of Redis Pipeline Support in Spring Boot with Lettuce and Redisson Clients
Wukong Talks Architecture
Wukong Talks Architecture
Apr 4, 2024 · Operations

Automated Deployment of Java Projects Using Jenkins Pipeline

This article provides a comprehensive guide on using Jenkins Pipeline to automate the deployment of Java backend projects, covering pipeline concepts, parameterized builds, code checkout, Maven compilation, JAR packaging, remote uploading, backup, update, and service restart procedures.

AutomationDeploymentJava
0 likes · 16 min read
Automated Deployment of Java Projects Using Jenkins Pipeline
Wukong Talks Architecture
Wukong Talks Architecture
Apr 3, 2024 · Operations

Automated Deployment of Java Projects Using Jenkins Pipeline

This article explains how to use Jenkins Pipeline to automate the deployment of a Java backend project, covering pipeline basics, parameterized builds, GitLab branch checkout, Maven compilation, JAR packaging, remote file transfer, backup, update, and service restart with Docker Swarm.

AutomationJavaJenkins
0 likes · 16 min read
Automated Deployment of Java Projects Using Jenkins Pipeline
Tencent Technical Engineering
Tencent Technical Engineering
Apr 2, 2024 · Fundamentals

Cache, Prefetching, False Sharing, Pipeline, and Data Dependency: Benchmarks and Optimizations in Rust

The article shows how row‑major vs column‑major traversal, random access, cache‑set conflicts, false sharing, branch‑prediction failures, and loop‑carried data dependencies each degrade performance by tying Rust (and C++) code patterns to CPU cache behavior, prefetching, pipeline stalls, and vectorization limits, demonstrated through runnable benchmarks.

BenchmarkCPU cachePipeline
0 likes · 15 min read
Cache, Prefetching, False Sharing, Pipeline, and Data Dependency: Benchmarks and Optimizations in Rust
JD Cloud Developers
JD Cloud Developers
Mar 26, 2024 · Cloud Native

Unlocking Efficient CI/CD: The Power of Cloud‑Native Pipeline Models

This article explains the essence of DevOps pipelines, outlines the characteristics of a high‑quality pipeline model—including clear layering, strong orchestrability, fan‑in/fan‑out support, and multi‑condition execution—illustrates real‑world analogies, and details how cloud‑native pipelines upgrade to a three‑layer stage/atom architecture with both graphical and YAML orchestration options.

DevOpsPipelineci/cd
0 likes · 11 min read
Unlocking Efficient CI/CD: The Power of Cloud‑Native Pipeline Models
JD Tech
JD Tech
Mar 22, 2024 · Cloud Native

Understanding and Upgrading Cloud Native DevOps Pipeline Models

This article explains the fundamentals of DevOps pipelines, outlines the characteristics of an excellent pipeline model such as clear layering, high orchestrability, fan‑in/fan‑out support, and flexible execution conditions, and describes how cloud‑native pipeline models are upgraded with stage and atom concepts, DAG orchestration, YAML configuration, and practical UI operations.

AutomationDevOpsPipeline
0 likes · 11 min read
Understanding and Upgrading Cloud Native DevOps Pipeline Models
Open Source Tech Hub
Open Source Tech Hub
Mar 12, 2024 · Artificial Intelligence

Step-by-Step Guide to Install ModelScope and Perform NLP Inference in Python & PHP

This guide walks you through setting up a Conda Python environment, installing PyTorch and the ModelScope library, running NLP pipelines for tasks like word segmentation and text classification, and calling ModelScope models from PHP using the PHPY extension, complete with code examples and troubleshooting tips.

AI inferenceModelScopeNLP
0 likes · 14 min read
Step-by-Step Guide to Install ModelScope and Perform NLP Inference in Python & PHP
21CTO
21CTO
Mar 4, 2024 · Backend Development

How ioredis Became the Leading Node.js Redis Client and Got Acquired

ioredis, a high‑performance Node.js Redis client created by luin, uses a single‑socket pipeline for efficient command batching, has attracted enterprise users like Alibaba, and after years of growth was officially acquired by Redis, with its source now hosted on GitHub.

BackendNode.jsPipeline
0 likes · 4 min read
How ioredis Became the Leading Node.js Redis Client and Got Acquired
DevOps
DevOps
Feb 28, 2024 · Operations

DevOps Overview, Continuous Integration Practices, Tool Comparison, and Jenkins Pipeline Implementation

This article provides a comprehensive overview of DevOps history and principles, explains continuous integration concepts and benefits, compares popular CI tools such as Jenkins, GitLab CI/CD, Travis CI, Azure DevOps, and CircleCI, and demonstrates how to implement pipelines in Jenkins using both declarative and scripted syntax.

JenkinsPipelineci/cd
0 likes · 12 min read
DevOps Overview, Continuous Integration Practices, Tool Comparison, and Jenkins Pipeline Implementation