Tag

Gzip

0 views collected around this technical thread.

Mike Chen's Internet Architecture
Mike Chen's Internet Architecture
May 15, 2025 · Operations

Nginx High-Concurrency Optimization Techniques

This article explains how to achieve million‑level concurrent connections with Nginx by tuning OS limits, worker processes, epoll event handling, gzip compression, and zero‑copy file transfer, providing concrete configuration snippets and performance rationale for each optimization.

GzipHigh ConcurrencyLinux
0 likes · 4 min read
Nginx High-Concurrency Optimization Techniques
Code Mala Tang
Code Mala Tang
Mar 26, 2025 · Backend Development

Boost FastAPI Performance: 9 Proven Techniques with Code Samples

Learn how to dramatically improve FastAPI application speed by implementing asynchronous endpoints, database connection pooling, Redis caching, query optimization, Gzip compression, background tasks, performance monitoring, CDN static file serving, and faster JSON serialization with ujson, each illustrated with practical code examples.

AsyncBackground TasksCaching
0 likes · 7 min read
Boost FastAPI Performance: 9 Proven Techniques with Code Samples
Java Architect Essentials
Java Architect Essentials
Mar 16, 2025 · Backend Development

Using Try‑with‑Resources for GZIP Compression in Java: Avoiding Resource Leaks

This article explains how to compress large objects with GZIP before storing them in Redis, demonstrates the pitfalls of not closing streams, shows how Java's try‑with‑resources simplifies resource management, and provides best‑practice code examples to prevent hidden IO exceptions.

BackendGzipJava
0 likes · 7 min read
Using Try‑with‑Resources for GZIP Compression in Java: Avoiding Resource Leaks
Mike Chen's Internet Architecture
Mike Chen's Internet Architecture
Feb 20, 2025 · Backend Development

Five Key Nginx Configuration Tweaks to Boost High‑Concurrency Performance

This article explains five essential Nginx parameters—worker_processes, worker_connections, keepalive_timeout, gzip compression, and file‑caching settings—along with practical examples and code snippets to dramatically improve high‑concurrency handling on servers.

CachingGzipHigh Concurrency
0 likes · 6 min read
Five Key Nginx Configuration Tweaks to Boost High‑Concurrency Performance
Java Architect Essentials
Java Architect Essentials
Dec 17, 2024 · Backend Development

Configuring Nginx for High‑Performance Static Sites: Caching, Gzip, CORS, and Anti‑Hotlinking

This article explains how to configure Nginx for a high‑performance static website by setting up proper caching headers, enabling gzip compression, configuring cross‑origin resource sharing, and implementing hotlink protection, with detailed code examples and explanations of the underlying principles.

CORSCachingGzip
0 likes · 8 min read
Configuring Nginx for High‑Performance Static Sites: Caching, Gzip, CORS, and Anti‑Hotlinking
Architecture Development Notes
Architecture Development Notes
Nov 22, 2024 · Backend Development

Build a Fast Rust Gzip Compressor: Step‑by‑Step Tutorial

This tutorial walks you through creating a simple yet efficient Gzip compression tool in Rust, covering project setup, dependency configuration, full source code, command‑line parsing with clap, file handling, compression using flate2, performance measurement, and execution instructions.

CLIGzipcompression
0 likes · 6 min read
Build a Fast Rust Gzip Compressor: Step‑by‑Step Tutorial
Top Architect
Top Architect
Nov 9, 2024 · Backend Development

Configuring Nginx for High‑Performance Static Sites: Cache, Gzip, CORS and Anti‑Hotlinking

This article explains how to configure Nginx for a high‑performance static website by setting up proper caching rules, enabling gzip compression, configuring cross‑origin resource sharing and preventing hotlinking, and includes practical code examples and detailed explanations of the underlying mechanisms.

BackendCORSCache
0 likes · 11 min read
Configuring Nginx for High‑Performance Static Sites: Cache, Gzip, CORS and Anti‑Hotlinking
Top Architect
Top Architect
Oct 29, 2024 · Backend Development

Comprehensive Nginx Configuration Guide: Basics, Optimization, and Deployment

This article provides a step‑by‑step tutorial on understanding, simplifying, and optimizing Nginx configuration—including core directives, global/events/http blocks, reverse‑proxy setup, gzip compression, static‑dynamic separation, multi‑site hosting, and essential command‑line operations—complete with annotated code examples.

ConfigurationDeploymentGzip
0 likes · 16 min read
Comprehensive Nginx Configuration Guide: Basics, Optimization, and Deployment
Python Programming Learning Circle
Python Programming Learning Circle
Oct 10, 2024 · Backend Development

Python Web Scraping Techniques: Requests, Proxies, Cookies, Headers, Captcha, Gzip, and Multithreading

This article outlines essential Python web‑scraping techniques, covering basic GET/POST requests, proxy usage, cookie handling, header manipulation to mimic browsers, simple captcha solutions, gzip compression handling, and multithreaded crawling with a thread‑pool template, providing practical code examples for each step.

Gzipcookiesmultithreading
0 likes · 5 min read
Python Web Scraping Techniques: Requests, Proxies, Cookies, Headers, Captcha, Gzip, and Multithreading
IT Services Circle
IT Services Circle
Sep 29, 2024 · Backend Development

Five‑Step Optimization of a Category‑Tree Query in a SpringBoot Application

This article details a step‑by‑step performance improvement journey for a category‑tree query in a SpringBoot‑Thymeleaf system, covering Redis caching, scheduled jobs, local Caffeine cache, Gzip compression, and data slimming with byte‑array storage to resolve latency and large‑key issues.

CachingGzipRedis
0 likes · 8 min read
Five‑Step Optimization of a Category‑Tree Query in a SpringBoot Application
Top Architect
Top Architect
Sep 27, 2024 · Backend Development

Comprehensive Guide to Nginx Configuration, Optimization, and Deployment

This article provides a step‑by‑step tutorial on understanding, simplifying, annotating, and optimizing Nginx configuration files, covering global, events, and http blocks, practical deployment tips, reverse‑proxy setup, gzip compression, maintenance pages, multi‑site hosting, static‑dynamic separation, and essential command‑line operations for Linux servers.

BackendConfigurationDeployment
0 likes · 20 min read
Comprehensive Guide to Nginx Configuration, Optimization, and Deployment
Top Architect
Top Architect
Sep 23, 2024 · Backend Development

Comprehensive Nginx Configuration Guide: Basics, Optimization, and Deployment

This article provides a step‑by‑step walkthrough of Nginx configuration, explaining the original nginx.conf file, simplifying it, describing the global, events, and http blocks, and covering practical deployment, reverse‑proxy setup, gzip compression, maintenance pages, multi‑site hosting, static‑dynamic separation, and essential command‑line operations.

BackendConfigurationDeployment
0 likes · 17 min read
Comprehensive Nginx Configuration Guide: Basics, Optimization, and Deployment
Architect
Architect
Sep 21, 2024 · Operations

Comprehensive Guide to Nginx Configuration, Optimization, and Deployment

This article provides a step‑by‑step tutorial on understanding, simplifying, and optimizing Nginx configuration files, covering the global, events, and http blocks, essential commands for installation and management, and practical tips such as history‑mode handling, reverse proxy setup, gzip compression, maintenance pages, virtual hosting, and static‑dynamic separation.

ConfigurationDeploymentGzip
0 likes · 14 min read
Comprehensive Guide to Nginx Configuration, Optimization, and Deployment
Top Architect
Top Architect
Sep 12, 2024 · Operations

Comprehensive Nginx Configuration Guide: From Basics to Optimization

This article provides a step‑by‑step walkthrough of Nginx configuration, covering the original nginx.conf structure, a cleaned‑up version with annotations, the three main blocks (global, events, http), simple site deployment, common optimizations such as history‑mode handling, reverse proxy, gzip compression, maintenance pages, multi‑site hosting, static‑dynamic separation, and essential commands for installation, start, reload and shutdown.

ConfigurationDeploymentGzip
0 likes · 18 min read
Comprehensive Nginx Configuration Guide: From Basics to Optimization