Tag

Large Files

0 views collected around this technical thread.

Selected Java Interview Questions
Selected Java Interview Questions
May 9, 2025 · Databases

Comparing IDEA and Navicat for Executing Large SQL Files: Performance Test and Analysis

The author compares IntelliJ IDEA's built‑in database tool with Navicat for running massive SQL dump files, showing that IDEA consistently achieves higher execution speed, lower CPU usage, and no freezes even on multi‑gigabyte scripts, contrary to common expectations.

BackendDatabaseIDEA
0 likes · 5 min read
Comparing IDEA and Navicat for Executing Large SQL Files: Performance Test and Analysis
Python Programming Learning Circle
Python Programming Learning Circle
Feb 28, 2025 · Fundamentals

Techniques for Efficient Large File Processing in Python

Processing large files efficiently in Python requires techniques such as line-by-line iteration, chunked reads, generators, buffered I/O, and streaming, which help avoid memory errors, improve speed, and optimize resources for tasks like log analysis, data scraping, and real-time API handling.

File I/OLarge FilesPython
0 likes · 5 min read
Techniques for Efficient Large File Processing in Python
php中文网 Courses
php中文网 Courses
Jan 14, 2025 · Backend Development

Reading Large Files in PHP Using fread: Line‑by‑Line Processing

This article explains how to efficiently read large files in PHP line by line with the fread function, provides a complete code example, and discusses additional techniques such as buffering, fseek positioning, and adjusting memory limits to avoid memory overflow.

BackendLarge FilesMemory Management
0 likes · 4 min read
Reading Large Files in PHP Using fread: Line‑by‑Line Processing
Java Architect Essentials
Java Architect Essentials
Nov 25, 2024 · Databases

IDEA vs Navicat: Performance Comparison for Executing Large SQL Files

The author compares IDEA's built‑in database tool with Navicat for running massive SQL scripts, showing that IDEA consistently uses less CPU, avoids freezes, and achieves higher execution speed—even on files up to 1.83 GB—making it the preferred choice for large‑scale database migrations.

DatabaseIDEALarge Files
0 likes · 5 min read
IDEA vs Navicat: Performance Comparison for Executing Large SQL Files
php中文网 Courses
php中文网 Courses
Nov 25, 2024 · Backend Development

Reading Large Files in PHP Using fread: Line-by-Line Processing and Optimization Tips

This article explains how to efficiently read large files in PHP by using the fread function to process files line by line, includes a complete code example, and offers additional techniques such as buffering, fseek usage, and memory limit adjustments to prevent overflow.

Large FilesMemory ManagementPHP
0 likes · 4 min read
Reading Large Files in PHP Using fread: Line-by-Line Processing and Optimization Tips
php中文网 Courses
php中文网 Courses
Jul 2, 2024 · Backend Development

Reading Large Files in PHP Using fread Line by Line

This article explains how to efficiently read large files in PHP by using the fread function to process the file line by line, includes code examples, and discusses additional techniques such as buffering, fseek positioning, and increasing memory limits to avoid memory overflow.

BackendLarge FilesMemory Management
0 likes · 4 min read
Reading Large Files in PHP Using fread Line by Line
php中文网 Courses
php中文网 Courses
Mar 6, 2024 · Backend Development

Reading Large Files in PHP Line by Line with fread

This article explains how to efficiently read large files in PHP using the fread function line by line, providing code examples, buffering tips, fseek usage, and memory‑limit adjustments to avoid memory overflow while processing massive data streams.

BackendLarge FilesMemory Management
0 likes · 4 min read
Reading Large Files in PHP Line by Line with fread
Architecture Digest
Architecture Digest
Aug 29, 2021 · Backend Development

Implementing High‑Performance Large File HTTP Upload with Resume Support Using C Server and HTML5/JavaScript

This article explains how to build a high‑performance large‑file HTTP upload system with breakpoint resume, detailing server‑side C implementation, immediate disk writes, client‑side hash generation, cookie‑based IDs, and JavaScript code for chunked uploading, progress tracking, and error handling.

C serverFile UploadHTML5
0 likes · 10 min read
Implementing High‑Performance Large File HTTP Upload with Resume Support Using C Server and HTML5/JavaScript
Full-Stack Internet Architecture
Full-Stack Internet Architecture
Jul 1, 2020 · Backend Development

Efficient Large File Reading in Java: Memory‑Friendly Approaches and Concurrency

This article explains how to read large files in Java without running out of memory by comparing full‑file loading, line‑by‑line reading using BufferedReader, Apache Commons IO, and Java 8 streams, and shows how to boost throughput with batch processing and multithreaded file splitting.

File I/OJavaLarge Files
0 likes · 12 min read
Efficient Large File Reading in Java: Memory‑Friendly Approaches and Concurrency
Java Captain
Java Captain
Nov 27, 2017 · Backend Development

Efficiently Reading Large Files in Java without Exhausting Memory

This tutorial demonstrates how to efficiently read large files in Java by avoiding loading all lines into memory, comparing in‑memory approaches with streaming techniques using Scanner and Apache Commons IO, and showing memory usage metrics for each method.

Apache Commons IOFile I/OJava
0 likes · 5 min read
Efficiently Reading Large Files in Java without Exhausting Memory