Tagged articles
14 articles
Page 1 of 1
Dual-Track Product Journal
Dual-Track Product Journal
Jun 18, 2025 · Operations

How to Master Batch Mixing and FIFO for Short‑Shelf Products in Warehouses

This guide explains how to handle batch mixing of short‑shelf‑life items in warehouses and stores by establishing clear batch identifiers, maintaining batch‑level inventory ledgers, applying dynamic expiration calculations, and enforcing FIFO through precise inbound recording, storage adjustments, outbound prioritization, regular cycle counts, and staff training to minimize waste and improve turnover.

FIFOLogisticsWarehouse Operations
0 likes · 12 min read
How to Master Batch Mixing and FIFO for Short‑Shelf Products in Warehouses
macrozheng
macrozheng
Dec 13, 2024 · Backend Development

How to Implement a FIFO Export Queue in Spring Boot to Prevent Performance Bottlenecks

To avoid performance degradation caused by simultaneous large‑scale data exports, this guide demonstrates building a fixed‑size FIFO export queue in Spring Boot, integrating EasyExcel for million‑row exports, handling asynchronous processing, and providing sample code for the queue, export service, and controller.

BackendExport QueueFIFO
0 likes · 12 min read
How to Implement a FIFO Export Queue in Spring Boot to Prevent Performance Bottlenecks
IT Architects Alliance
IT Architects Alliance
Sep 24, 2024 · Backend Development

Implementing a FIFO Export Queue for Large Data Exports in Java

The article describes a Java‑based FIFO export queue that limits concurrent MySQL export operations, outlines the related classes (ExportQueue, AbstractExport, ExportImpl, and a test controller), provides full source code, and presents test results showing how the queue manages up to ten simultaneous export requests.

ExportQueueFIFOJava
0 likes · 11 min read
Implementing a FIFO Export Queue for Large Data Exports in Java
Architect
Architect
Jul 16, 2024 · Backend Development

Design and Implementation of a FIFO Export Queue for Large Data Exports in Java

This article explains how to handle massive MySQL export operations by introducing a fixed‑size FIFO queue, detailing the Java classes ExportQueue, AbstractExport, and ExportImpl, and showing a test controller that demonstrates queue limits, concurrency handling, and future considerations.

BackendExport QueueFIFO
0 likes · 11 min read
Design and Implementation of a FIFO Export Queue for Large Data Exports in Java
Python Crawling & Data Mining
Python Crawling & Data Mining
Jun 13, 2024 · Fundamentals

How to Build a Python FIFO Checker for Excel Inventory with Tkinter

This article walks through a Python solution for validating FIFO inventory rules in Excel files, using pandas and Tkinter to create a GUI tool that reads multiple sheets, checks operation and stock dates, highlights violations, and saves the results, while also addressing common import errors and offering troubleshooting tips.

ExcelFIFOPython
0 likes · 12 min read
How to Build a Python FIFO Checker for Excel Inventory with Tkinter
IT Services Circle
IT Services Circle
Jun 10, 2022 · Fundamentals

Page Replacement Algorithms: OPT, FIFO, LRU, CLOCK, and LFU

This article reviews virtual memory concepts and explains five page replacement algorithms—Optimal (OPT), First‑In‑First‑Out (FIFO), Least Recently Used (LRU), CLOCK (including a simple and improved version), and Least Frequently Used (LFU)—detailing their principles, operation, advantages, drawbacks, and illustrative examples.

FIFOLRUOPT
0 likes · 14 min read
Page Replacement Algorithms: OPT, FIFO, LRU, CLOCK, and LFU
Open Source Linux
Open Source Linux
Oct 11, 2021 · Cloud Native

Why a Container Engine Restart Can Kill Your App: FIFO Bug Explained

The article recounts a real‑world incident where a container engine restart broke a FIFO, causing a Java service to stop responding, and walks through the step‑by‑step debugging process, explains the underlying stdio forwarding mechanism in container runtimes, and shows how a simple flag change fixes the bug.

DebuggingFIFOKata
0 likes · 13 min read
Why a Container Engine Restart Can Kill Your App: FIFO Bug Explained
ITPUB
ITPUB
Feb 10, 2018 · Operations

How to Parallelize Shell Loops on Linux Without External Tools

This guide explains why serial shell loops become a bottleneck for large‑scale tasks, then demonstrates three pure‑bash techniques—background execution, a simulated queue using arrays, and a FIFO‑based token system—to run multiple loop iterations concurrently while controlling the number of active processes.

BashFIFOParallel Execution
0 likes · 12 min read
How to Parallelize Shell Loops on Linux Without External Tools
ITPUB
ITPUB
Mar 23, 2017 · Fundamentals

Master Linux Pipes and FIFOs: Build a Simple C Chat Application

This article explains the concepts of anonymous and named pipes in Linux, compares their characteristics, shows how to create them with mknod and mkfifo, and provides a complete C example that implements a two‑process chat program using threads and pipe I/O.

CFIFOIPC
0 likes · 8 min read
Master Linux Pipes and FIFOs: Build a Simple C Chat Application
Java High-Performance Architecture
Java High-Performance Architecture
Feb 15, 2016 · Backend Development

How Zookeeper Powers Synchronous and FIFO Distributed Queues

This article explains how Zookeeper can be used to build reliable distributed queues, covering both synchronous queues that wait for all members and FIFO queues that follow the classic producer‑consumer model, with step‑by‑step implementation details and illustrative diagrams.

FIFOSynchronous Queuedistributed queue
0 likes · 3 min read
How Zookeeper Powers Synchronous and FIFO Distributed Queues